diff options
| author | Eli Zaretskii | 2005-12-31 14:21:53 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-12-31 14:21:53 +0000 |
| commit | 6baa02d616a510f4f972537377a8946b8bf6fcac (patch) | |
| tree | 405189531087d45a7dc702559b6a0034a99588e3 /src | |
| parent | 8c3f3d642df65b2cc00a53054145efbdaa9b7549 (diff) | |
| download | emacs-6baa02d616a510f4f972537377a8946b8bf6fcac.tar.gz emacs-6baa02d616a510f4f972537377a8946b8bf6fcac.zip | |
(gdb_pvec_type): A dummy variable for GDB's sake.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index 25d9ae45730..71b12d5a407 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -112,6 +112,9 @@ EMACS_INT gdb_data_seg_bits = 0; | |||
| 112 | #endif | 112 | #endif |
| 113 | EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG; | 113 | EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG; |
| 114 | EMACS_INT gdb_array_mark_flag = ARRAY_MARK_FLAG; | 114 | EMACS_INT gdb_array_mark_flag = ARRAY_MARK_FLAG; |
| 115 | /* GDB might say "No enum type named pvec_type" if we don't have at | ||
| 116 | least one symbol with that type, and then xbacktrace could fail. */ | ||
| 117 | enum pvec_type gdb_pvec_type = PVEC_TYPE_MASK; | ||
| 115 | 118 | ||
| 116 | /* Command line args from shell, as list of strings. */ | 119 | /* Command line args from shell, as list of strings. */ |
| 117 | Lisp_Object Vcommand_line_args; | 120 | Lisp_Object Vcommand_line_args; |