Replace the old, now-defunct #define YY_NO_UNPUT by the new %option
nounput. This gets rid of a compiler warning, so we are warning-free again. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1048 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
a86aff7232
commit
0f8e5057d5
|
@ -1,3 +1,8 @@
|
||||||
|
2012-01-30 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* lexer.l: Replace the old, now-defunct #define YY_NO_UNPUT by
|
||||||
|
the new %option nounput. This gets rid of a compiler warning.
|
||||||
|
|
||||||
2012-01-30 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2012-01-30 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
Add a connection_type attribute to each programmer, rather than
|
Add a connection_type attribute to each programmer, rather than
|
||||||
|
|
3
lexer.l
3
lexer.l
|
@ -35,8 +35,6 @@
|
||||||
#include "config_gram.h"
|
#include "config_gram.h"
|
||||||
#include "lists.h"
|
#include "lists.h"
|
||||||
|
|
||||||
#define YY_NO_UNPUT
|
|
||||||
|
|
||||||
%}
|
%}
|
||||||
|
|
||||||
DIGIT [0-9]
|
DIGIT [0-9]
|
||||||
|
@ -47,6 +45,7 @@ SIGN [+-]
|
||||||
%x strng
|
%x strng
|
||||||
%x incl
|
%x incl
|
||||||
%x comment
|
%x comment
|
||||||
|
%option nounput
|
||||||
|
|
||||||
/* Bump resources for classic lex. */
|
/* Bump resources for classic lex. */
|
||||||
%e2000
|
%e2000
|
||||||
|
|
Loading…
Reference in New Issue