diff options
| author | Paul Eggert | 2012-07-30 11:44:51 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-30 11:44:51 -0700 |
| commit | c32af1e4a04ef689097f73430982b28392d72372 (patch) | |
| tree | 0c9f154afec3197c03ff1bd18b5c04f28944344f /src/alloc.c | |
| parent | 302fc036e8b6305a45aca868e0001dd8fb3ed123 (diff) | |
| download | emacs-c32af1e4a04ef689097f73430982b28392d72372.tar.gz emacs-c32af1e4a04ef689097f73430982b28392d72372.zip | |
Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
* alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
* lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
gdb_make_enums_visible.
(TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
(DIRECTORY_SEP): Now a constant, not a macro.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index c5ed1980d7c..4227b168c6b 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6882,4 +6882,7 @@ union | |||
| 6882 | enum MAX_ALLOCA MAX_ALLOCA; | 6882 | enum MAX_ALLOCA MAX_ALLOCA; |
| 6883 | enum More_Lisp_Bits More_Lisp_Bits; | 6883 | enum More_Lisp_Bits More_Lisp_Bits; |
| 6884 | enum pvec_type pvec_type; | 6884 | enum pvec_type pvec_type; |
| 6885 | #if USE_LSB_TAG | ||
| 6886 | enum lsb_bits lsb_bits; | ||
| 6887 | #endif | ||
| 6885 | } const EXTERNALLY_VISIBLE gdb_make_enums_visible = {0}; | 6888 | } const EXTERNALLY_VISIBLE gdb_make_enums_visible = {0}; |