Mercurial > emacs
comparison src/.gdbinit @ 1039:8ab465f7a7ff
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 29 Aug 1992 02:14:58 +0000 |
parents | 8b201fcaa592 |
children | ee559fe0f1ab |
comparison
equal
deleted
inserted
replaced
1038:59fa7697bb14 | 1039:8ab465f7a7ff |
---|---|
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 *$ | 98 output *(struct Lisp_Cons *) ($ & 0x00ffffff) |
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 |