diff options
| author | Karl Heuer | 1995-01-28 03:59:42 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-28 03:59:42 +0000 |
| commit | cd39e9464ad1ee9081dc8f011ed47aa524eb7859 (patch) | |
| tree | 8154adc14b8a97e5e6d8a2861b7d4db279f709a3 /src | |
| parent | 4bab50bd79d703aea50587e4cf5b628b59741526 (diff) | |
| download | emacs-cd39e9464ad1ee9081dc8f011ed47aa524eb7859.tar.gz emacs-cd39e9464ad1ee9081dc8f011ed47aa524eb7859.zip | |
(xdispobjfwd): New macro.
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index cb513723969..4332b0c4e24 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -122,6 +122,13 @@ document xbufobjfwd | |||
| 122 | Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. | 122 | Print $ as a buffer-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. |
| 123 | end | 123 | end |
| 124 | 124 | ||
| 125 | define xdispobjfwd | ||
| 126 | print (struct Lisp_Display_Objfwd *) (($ & 0x0fffffff) | $data_seg_bits) | ||
| 127 | end | ||
| 128 | document xdispobjfwd | ||
| 129 | Print $ as a display-local object forwarding pointer, assuming it is an Emacs Lisp Misc value. | ||
| 130 | end | ||
| 131 | |||
| 125 | define xbuflocal | 132 | define xbuflocal |
| 126 | print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits) | 133 | print (struct Lisp_Buffer_Local_Value *) (($ & 0x0fffffff) | $data_seg_bits) |
| 127 | end | 134 | end |