diff --git a/src/las.c b/src/las.c index f44dc28ea2c340b5c680543014794538ec99f86d..4943e92540ab4a9449659cfdd75e03d3bc6d6f6e 100644 --- a/src/las.c +++ b/src/las.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: las.c,v 1.56 1998/04/06 20:31:58 hubbe Exp $"); +RCSID("$Id: las.c,v 1.57 1998/04/09 20:38:28 hubbe Exp $"); #include "language.h" #include "interpret.h" @@ -610,6 +610,12 @@ void resolv_constant(node *n) push_int(0); return; + case F_UNDEFINED: + if(compiler_pass==2) + yyerror("Expected constant, got undefined identifier"); + push_int(0); + return; + default: yyerror("Expected constant, got something else"); push_int(0);