diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-04-24 10:32:48 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-04-24 10:32:48 +0300 |
commit | 76db6fccee00ddc2584cbe6f0cdcd0bb11e884f6 (patch) | |
tree | 5e4626b5552a217f7ebc58e0e1ce604a260306f3 | |
parent | b893a1502db32da5d0d0e26a90b5d26d2ee4ee04 (diff) | |
download | emacs-76db6fccee00ddc2584cbe6f0cdcd0bb11e884f6.tar.gz |
Fix GDB startup with .gdbinit.
.gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
definition of "struct Lisp_Symbol".
-rw-r--r-- | src/.gdbinit | 2 | ||||
-rw-r--r-- | src/ChangeLog | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 32b3827b22d..5ecdaa4a572 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -21,6 +21,8 @@ # Force loading of symbols, enough to give us gdb_valbits etc. set main +# With some compilers, we need this to give us struct Lisp_Symbol etc.: +set Fmake_symbol # Find lwlib source files too. dir ../lwlib diff --git a/src/ChangeLog b/src/ChangeLog index f5f6e8c4421..66fc3c1546b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-04-24 Eli Zaretskii <eliz@gnu.org> + + * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the + definition of "struct Lisp_Symbol". + 2010-04-23 Eli Zaretskii <eliz@gnu.org> * xdisp.c (pop_it): When the stack is popped after displaying |