did not compile with NOPP defined
authorceriel <none@none>
Mon, 2 May 1988 15:37:13 +0000 (15:37 +0000)
committerceriel <none@none>
Mon, 2 May 1988 15:37:13 +0000 (15:37 +0000)
lang/cem/cemcom/Parameters
lang/cem/cemcom/input.c

index 9dd95e0..483891f 100644 (file)
 
 
 !File: dataflow.h
-#define DATAFLOW       1       /* produce some compile-time xref       */
+#undef DATAFLOW        1       /* produce some compile-time xref       */
 
 
 !File: debug.h
-#define DEBUG          1       /* perform various self-tests           */
+#undef DEBUG           1       /* perform various self-tests           */
 
 
 !File: use_tmp.h
-#define USE_TMP                1       /* collect exa, exp, ina and inp commands
+#undef USE_TMP         1       /* collect exa, exp, ina and inp commands
                                        and let them precede the rest of
                                        the generated compact code      */
 
 
 
 !File: inputtype.h
-#define INP_READ_IN_ONE        1       /* read input file in one       */
+#undef INP_READ_IN_ONE 1       /* read input file in one       */
 
 
 !File: nopp.h
-#undef NOPP            1       /* if NOT defined, use built-int preprocessor */
+#define NOPP           1       /* if NOT defined, use built-int preprocessor */
 
 
 !File: nobitfield.h
 
 
 !File: noRoption.h
-#undef NOROPTION       1       /* if NOT defined, R option is implemented */
+#define NOROPTION      1       /* if NOT defined, R option is implemented */
 
 
 !File: nocross.h
index f3154bd..bf538b9 100644 (file)
@@ -58,7 +58,9 @@ AtEoIF()
        if (nestlevel != nestlow) lexwarning("missing #endif");
        else
 #endif NOPP
-       if (NoUnstack) lexwarning("unexpected EOF");
+       if (NoUnstack) lexerror("unexpected EOF");
+#ifndef NOPP
        nestlevel = nestlow;
+#endif
        return 0;
 }