aboutsummaryrefslogtreecommitdiff
path: root/src/c.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.l')
-rw-r--r--src/c.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c.l b/src/c.l
index 205a297..be14004 100644
--- a/src/c.l
+++ b/src/c.l
@@ -206,20 +206,20 @@ init_lex(int debug_level)
obstack_init(&string_stk);
for (i = 0; i < NUMITEMS(keywords); i++) {
- sp = install(keywords[i]);
+ sp = install(keywords[i], 0);
sp->type = SymToken;
sp->token_type = WORD;
}
for (i = 0; i < NUMITEMS(types); i++) {
- sp = install(types[i]);
+ sp = install(types[i], 0);
sp->type = SymToken;
sp->token_type = TYPE;
sp->source = NULL;
sp->def_line = -1;
sp->ref_line = NULL;
}
- sp = install("...");
+ sp = install("...", 0);
sp->type = SymToken;
sp->token_type = IDENTIFIER;
sp->source = NULL;

Return to:

Send suggestions and report system problems to the System administrator.