rename yyerror to sel_yyerror in the whole library, not just the lexer

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22974 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-04-15 13:09:09 +00:00
parent 32bfb9806b
commit 4185837cd3
3 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
2008-04-15 Love H<>rnquist <20>strand <lha@it.su.se>
* sel.h: rename yyerror to sel_yyerror in the whole library, not
just the lexer
* sel-lex.l: rename yyerror to sel_yyerror in the whole library,
not just the lexer
2008-04-08 Love H<>rnquist <20>strand <lha@it.su.se>
* hx509.h: Make self-standing by including missing files.

View File

@@ -51,8 +51,6 @@ static void sel_yyerror (char *);
struct hx_expr_input _hx509_expr_input;
#define yyerror(msg) sel_yyerror(msg )
#define YY_NO_UNPUT 1
#undef YY_INPUT

View File

@@ -68,3 +68,5 @@ struct hx_expr_input {
extern struct hx_expr_input _hx509_expr_input;
int yyparse(void);
#define yyerror(msg) sel_yyerror(msg )