Skip to content
Snippets Groups Projects
Commit 5b23fbba authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Nicer fix.

Rev: src/language.yacc:1.54
parent a75fac1f
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@
/* This is the grammar definition of Pike. */
#include "global.h"
RCSID("$Id: language.yacc,v 1.53 1998/03/04 16:38:04 grubba Exp $");
RCSID("$Id: language.yacc,v 1.54 1998/03/04 16:43:08 grubba Exp $");
#ifdef HAVE_MEMORY_H
#include <memory.h>
#endif
......@@ -1225,9 +1225,7 @@ low_idents: F_IDENTIFIER
my_yyerror("'%s' undefined.", $1->str);
}
} else {
push_int(0);
$$=mkconstantsvaluenode(sp-1);
pop_stack();
$$=mkintnode(0);
}
}
free_string($1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment