From: Gerd Moellmann Date: Mon, 22 Nov 1999 13:17:23 +0000 (+0000) Subject: (enum gdb_lisp_params): Put in #if 0, since it doesn't X-Git-Tag: emacs-pretest-21.0.90~6028 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d0ee1a95da3dfbdfc95bf754fe820a00fb171ab0;p=emacs.git (enum gdb_lisp_params): Put in #if 0, since it doesn't work on systems not allowing enumerators > INT_MAX, and it won't work if EMACS_INT is long long. --- diff --git a/src/lisp.h b/src/lisp.h index 046f55e528e..9431ad36f31 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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