aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-22 13:17:23 +0000
committerGerd Moellmann1999-11-22 13:17:23 +0000
commitd0ee1a95da3dfbdfc95bf754fe820a00fb171ab0 (patch)
tree2e0ac42c02fe01751545599195297f29b1cf0be3 /src/lisp.h
parentd1b8adf7a69600405a0ff4908e457b96927cf903 (diff)
downloademacs-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.h6
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
120enum gdb_lisp_params 124enum 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