diff options
| author | Gerd Moellmann | 1999-11-22 13:17:23 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-22 13:17:23 +0000 |
| commit | d0ee1a95da3dfbdfc95bf754fe820a00fb171ab0 (patch) | |
| tree | 2e0ac42c02fe01751545599195297f29b1cf0be3 /src/lisp.h | |
| parent | d1b8adf7a69600405a0ff4908e457b96927cf903 (diff) | |
| download | emacs-d0ee1a95da3dfbdfc95bf754fe820a00fb171ab0.tar.gz emacs-d0ee1a95da3dfbdfc95bf754fe820a00fb171ab0.zip | |
(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.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 | |||
| 115 | #define GCTYPEBITS 3 | 115 | #define GCTYPEBITS 3 |
| 116 | #endif | 116 | #endif |
| 117 | 117 | ||
| 118 | #if 0 /* This doesn't work on some systems that don't allow enumerators | ||
| 119 | > INT_MAX, and it won't work for long long EMACS_INT. These | ||
| 120 | values are now found in emacs.c as EMACS_INT variables. */ | ||
| 121 | |||
| 118 | /* Make these values available in GDB, which sees enums but not macros. */ | 122 | /* Make these values available in GDB, which sees enums but not macros. */ |
| 119 | 123 | ||
| 120 | enum gdb_lisp_params | 124 | enum gdb_lisp_params |
| @@ -129,6 +133,8 @@ enum gdb_lisp_params | |||
| 129 | #endif | 133 | #endif |
| 130 | }; | 134 | }; |
| 131 | 135 | ||
| 136 | #endif /* 0 */ | ||
| 137 | |||
| 132 | #ifndef NO_UNION_TYPE | 138 | #ifndef NO_UNION_TYPE |
| 133 | 139 | ||
| 134 | #ifndef WORDS_BIG_ENDIAN | 140 | #ifndef WORDS_BIG_ENDIAN |