diff options
| author | Stefan Monnier | 2004-04-03 05:31:24 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-04-03 05:31:24 +0000 |
| commit | 0dda8fd8d5c9c0cbf020ecedc64356a3570bb599 (patch) | |
| tree | af50fe76357630c827e19705384a705cf049f0f4 | |
| parent | 35aeddc47b101268ed4a07c229f85ea8aad531b7 (diff) | |
| download | emacs-0dda8fd8d5c9c0cbf020ecedc64356a3570bb599.tar.gz emacs-0dda8fd8d5c9c0cbf020ecedc64356a3570bb599.zip | |
(gdb_use_union, gdb_use_lsb): New vars.
(gdb_emacs_intbits): Remove.
| -rw-r--r-- | src/emacs.c | 13 |
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 | ||
| 5 | This file is part of GNU Emacs. | 5 | This 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 | ||
| 90 | int gdb_use_lsb = 1; | ||
| 91 | #else | ||
| 92 | int gdb_use_lsb = 0; | ||
| 93 | #endif | ||
| 94 | #ifdef NO_UNION_TYPE | ||
| 95 | int gdb_use_union = 0; | ||
| 96 | #else | ||
| 97 | int gdb_use_union = 1; | ||
| 98 | #endif | ||
| 89 | EMACS_INT gdb_valbits = VALBITS; | 99 | EMACS_INT gdb_valbits = VALBITS; |
| 90 | EMACS_INT gdb_gctypebits = GCTYPEBITS; | 100 | EMACS_INT gdb_gctypebits = GCTYPEBITS; |
| 91 | EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR; | ||
| 92 | #ifdef DATA_SEG_BITS | 101 | #ifdef DATA_SEG_BITS |
| 93 | EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; | 102 | EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS; |
| 94 | #else | 103 | #else |