aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2009-03-01 12:40:39 +0000
committerRichard M. Stallman2009-03-01 12:40:39 +0000
commit4f7cb96d1225c5295b1b6cfd08d44cdbdee928a7 (patch)
tree8e4051d76778e0eb0e12bdcfe9a0a70a883aacd9 /src
parent79fc530ea74f9a995a2f80ebdbd44857c12538ea (diff)
downloademacs-4f7cb96d1225c5295b1b6cfd08d44cdbdee928a7.tar.gz
emacs-4f7cb96d1225c5295b1b6cfd08d44cdbdee928a7.zip
(gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index c4025218991..3e94f0fc6c1 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -106,7 +106,7 @@ int gdb_use_union = 1;
106#endif 106#endif
107EMACS_INT gdb_valbits = VALBITS; 107EMACS_INT gdb_valbits = VALBITS;
108EMACS_INT gdb_gctypebits = GCTYPEBITS; 108EMACS_INT gdb_gctypebits = GCTYPEBITS;
109#ifdef DATA_SEG_BITS 109#if defined (DATA_SEG_BITS) && ! defined (USE_LSB_TAG)
110EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; 110EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
111#else 111#else
112EMACS_INT gdb_data_seg_bits = 0; 112EMACS_INT gdb_data_seg_bits = 0;