comparison src/.gdbinit @ 1069:ee559fe0f1ab

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Wed, 02 Sep 1992 02:46:03 +0000
parents 8ab465f7a7ff
children 0ffcf74fb8ad
comparison
equal deleted inserted replaced
1068:2fee5d1fe47e 1069:ee559fe0f1ab
93 Print $ as a screen pointer, assuming it is an Elisp screen value. 93 Print $ as a screen pointer, assuming it is an Elisp screen value.
94 end 94 end
95 95
96 define xcons 96 define xcons
97 print (struct Lisp_Cons *) ($ & 0x00ffffff) 97 print (struct Lisp_Cons *) ($ & 0x00ffffff)
98 output *(struct Lisp_Cons *) ($ & 0x00ffffff) 98 output *$
99 echo \n 99 echo \n
100 end 100 end
101 document xcons 101 document xcons
102 Print the contents of $, assuming it is an Elisp cons. 102 Print the contents of $, assuming it is an Elisp cons.
103 end 103 end