Conditionalized EMPTY_LIST initialization for code sharing between 7.4 and 8.0.
authorStephen Adams <edu/mit/csail/zurich/adams>
Wed, 16 Jul 1997 01:46:32 +0000 (01:46 +0000)
committerStephen Adams <edu/mit/csail/zurich/adams>
Wed, 16 Jul 1997 01:46:32 +0000 (01:46 +0000)
v7/src/microcode/boot.c

index fd2bd3e7fd98675ffdc13d8b5276e85ecf410f58..c003bd16d5c11a4886a07a9040e4a4de547e9e2d 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: boot.c,v 9.98 1997/07/15 22:54:57 adams Exp $
+$Id: boot.c,v 9.99 1997/07/16 01:46:32 adams Exp $
 
 Copyright (c) 1988-96 Massachusetts Institute of Technology
 
@@ -186,10 +186,16 @@ DEFUN (main_name, (argc, argv),
       Setup_Memory ((BLOCKS_TO_BYTES (Heap_Size)),
                    (BLOCKS_TO_BYTES (Stack_Size)),
                    (BLOCKS_TO_BYTES (Constant_Size)));
+
+#ifdef EMPTY_LIST_VALUE
+      /* EMPTY_LIST_VALUE is defined if it is teh true value for '() and
+         EMPTY_LIST is a location used to store '() or #F
+        */
       if (option_empty_list_eq_false)
        EMPTY_LIST = SHARP_F;
       else
        EMPTY_LIST = EMPTY_LIST_VALUE;
+#endif
 
       initialize_primitives ();
       if (! option_fasl_file)