aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-10-27 09:20:15 +0000
committerPavel Janík <[email protected]>2001-10-27 09:20:15 +0000
commit4e30ce42596d3b10e10e0e684badd92ed866696d (patch)
treeda64bfaf03a9e53ee227dba048cc53905dbad0b8
parent798dbe1fc86e34dbf9d5c57c856f186ab4a3eb70 (diff)
(gdb_lisp_params): Remove code in #if 0 which is now in emacs.c.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/lisp.h20
2 files changed, 5 insertions, 20 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c07d5e673e..c3168c51b6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-27 Pavel Jan,Bm(Bk <[email protected]>
+
+ * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
+ emacs.c.
+
2001-10-27 Gerd Moellmann <[email protected]>
* xdisp.c (move_it_vertically_backward): Use 2/3 line_height
diff --git a/src/lisp.h b/src/lisp.h
index 942bd5e981..3def720473 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -162,26 +162,6 @@ 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
-{
- gdb_valbits = VALBITS,
- gdb_gctypebits = GCTYPEBITS,
- gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR,
-#ifdef DATA_SEG_BITS
- gdb_data_seg_bits = DATA_SEG_BITS
-#else
- gdb_data_seg_bits = 0
-#endif
-};
-
-#endif /* 0 */
-
#ifndef NO_UNION_TYPE
#ifndef WORDS_BIG_ENDIAN