aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 43f300eca9f..b95f97368ca 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1,5 +1,5 @@
1/* Fully extensible Emacs, running on Unix, intended for GNU. 1/* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,2003 2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001,02,03,2004
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -86,9 +86,18 @@ extern char *index P_ ((const char *, int));
86 86
87/* Make these values available in GDB, which doesn't see macros. */ 87/* Make these values available in GDB, which doesn't see macros. */
88 88
89#ifdef USE_LSB_TAG
90int gdb_use_lsb = 1;
91#else
92int gdb_use_lsb = 0;
93#endif
94#ifdef NO_UNION_TYPE
95int gdb_use_union = 0;
96#else
97int gdb_use_union = 1;
98#endif
89EMACS_INT gdb_valbits = VALBITS; 99EMACS_INT gdb_valbits = VALBITS;
90EMACS_INT gdb_gctypebits = GCTYPEBITS; 100EMACS_INT gdb_gctypebits = GCTYPEBITS;
91EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
92#ifdef DATA_SEG_BITS 101#ifdef DATA_SEG_BITS
93EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; 102EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
94#else 103#else