summaryrefslogtreecommitdiffstats
path: root/grammar/lexer.l
diff options
context:
space:
mode:
Diffstat (limited to 'grammar/lexer.l')
-rw-r--r--grammar/lexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/lexer.l b/grammar/lexer.l
index 802b2d89..316b2a65 100644
--- a/grammar/lexer.l
+++ b/grammar/lexer.l
@@ -143,7 +143,7 @@ int fileno(FILE *stream);
* always the longest match :-(
*/
<INCL>.|\n
-<INCL>[^ \t\n]+ { if(cnfSetLexFile(yytext) != 0)
+<INCL>[^ \t\n]+ { if(cnfDoInclude(yytext) != 0)
yyterminate();
BEGIN INITIAL; }
"global"[ \n\t]*"(" { yylval.objType = CNFOBJ_GLOBAL;