]> code.delx.au - gnu-emacs/blobdiff - src/w32heap.c
Fix typo.
[gnu-emacs] / src / w32heap.c
index 11ec7c1b6c6b5b2eb84e9eee2d26a516ae4e063b..d947842474ff0802e60799f92003a9332a11c15b 100644 (file)
@@ -245,6 +245,7 @@ init_heap ()
          exit (1);
        }
 
+#if defined (NO_UNION_TYPE) && !defined (USE_LSB_TAG)
       /* Ensure that the addresses don't use the upper tag bits since
         the Lisp type goes there.  */
       if (((unsigned long) data_region_base & ~VALMASK) != 0)
@@ -252,7 +253,7 @@ init_heap ()
          printf ("Error: The heap was allocated in upper memory.\n");
          exit (1);
        }
-
+#endif
       data_region_end = data_region_base;
       real_data_region_end = data_region_end;
     }
@@ -304,3 +305,6 @@ _heap_term (void)
 }
 
 #endif
+
+/* arch-tag: 9a6a9860-040d-422d-8905-450dd535cd9c
+   (do not change this comment) */