1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

(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.
This commit is contained in:
Gerd Moellmann 1999-11-22 13:17:23 +00:00
parent d1b8adf7a6
commit d0ee1a95da

View File

@ -115,6 +115,10 @@ enum Lisp_Misc_Type
#define GCTYPEBITS 3 #define GCTYPEBITS 3
#endif #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. */ /* Make these values available in GDB, which sees enums but not macros. */
enum gdb_lisp_params enum gdb_lisp_params
@ -129,6 +133,8 @@ enum gdb_lisp_params
#endif #endif
}; };
#endif /* 0 */
#ifndef NO_UNION_TYPE #ifndef NO_UNION_TYPE
#ifndef WORDS_BIG_ENDIAN #ifndef WORDS_BIG_ENDIAN