]> git.eshelyaron.com Git - emacs.git/commitdiff
(enum gdb_lisp_params): Put in #if 0, since it doesn't
authorGerd Moellmann <gerd@gnu.org>
Mon, 22 Nov 1999 13:17:23 +0000 (13:17 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 22 Nov 1999 13:17:23 +0000 (13:17 +0000)
work on systems not allowing enumerators > INT_MAX, and it
won't work if EMACS_INT is long long.

src/lisp.h

index 046f55e528e400b628ad948b8912040d1c4201ce..9431ad36f311d10bca14a0a1de75f0022bf9001b 100644 (file)
@@ -115,6 +115,10 @@ enum Lisp_Misc_Type
 #define GCTYPEBITS 3
 #endif
 
+#if 0  /* This doesn't work on some systems that don't allow enumerators
+         > INT_MAX, and it won't work for long long EMACS_INT.  These
+         values are now found in emacs.c as EMACS_INT variables.  */
+
 /* Make these values available in GDB, which sees enums but not macros.  */
 
 enum gdb_lisp_params
@@ -129,6 +133,8 @@ enum gdb_lisp_params
 #endif
 };
 
+#endif /* 0 */
+
 #ifndef NO_UNION_TYPE
 
 #ifndef WORDS_BIG_ENDIAN