aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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