aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-05-19 09:49:33 +0000
committerKim F. Storm2004-05-19 09:49:33 +0000
commitcfcde636bec28b07aa50eee1e0dcc672b98efdd1 (patch)
tree6984dc4d7c154693d498b107b37dfdb7ead9d6cc /src
parent0d8c2e5cc3344ca9be97ee6f98a507430c61bcd2 (diff)
downloademacs-cfcde636bec28b07aa50eee1e0dcc672b98efdd1.tar.gz
emacs-cfcde636bec28b07aa50eee1e0dcc672b98efdd1.zip
(xsymbol): Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 3660155f62d..fe9ddf7dbb7 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -186,9 +186,10 @@ Print $ as a buffer-local-value pointer, assuming it is an Emacs Lisp Misc value
186end 186end
187 187
188define xsymbol 188define xsymbol
189 xgetptr $ 189 set $sym = $
190 xgetptr $sym
190 print (struct Lisp_Symbol *) $ptr 191 print (struct Lisp_Symbol *) $ptr
191 xprintsym $ 192 xprintsym $sym
192 echo \n 193 echo \n
193end 194end
194document xsymbol 195document xsymbol