comparison src/lisp.h @ 26531:a52135fe746e

(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.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 22 Nov 1999 13:17:23 +0000
parents b7438760079b
children 16fe8fbed828
comparison
equal deleted inserted replaced
26530:82384d47a93d 26531:a52135fe746e
113 113
114 #ifndef GCTYPEBITS 114 #ifndef GCTYPEBITS
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
121 { 125 {
122 gdb_valbits = VALBITS, 126 gdb_valbits = VALBITS,
126 gdb_data_seg_bits = DATA_SEG_BITS 130 gdb_data_seg_bits = DATA_SEG_BITS
127 #else 131 #else
128 gdb_data_seg_bits = 0 132 gdb_data_seg_bits = 0
129 #endif 133 #endif
130 }; 134 };
135
136 #endif /* 0 */
131 137
132 #ifndef NO_UNION_TYPE 138 #ifndef NO_UNION_TYPE
133 139
134 #ifndef WORDS_BIG_ENDIAN 140 #ifndef WORDS_BIG_ENDIAN
135 141