diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 317db96aa42..129e0f38ce3 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -137,14 +137,14 @@ Print the contents of $, assuming it is an Emacs Lisp cons. | |||
| 137 | end | 137 | end |
| 138 | 138 | ||
| 139 | define xcar | 139 | define xcar |
| 140 | print ((($ >> 24) & 0x7f) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->car : 0) | 140 | print ((($ >> 28) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->car : 0) |
| 141 | end | 141 | end |
| 142 | document xcar | 142 | document xcar |
| 143 | Print the car of $, assuming it is an Emacs Lisp pair. | 143 | Print the car of $, assuming it is an Emacs Lisp pair. |
| 144 | end | 144 | end |
| 145 | 145 | ||
| 146 | define xcdr | 146 | define xcdr |
| 147 | print ((($ >> 24) & 0x7f) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->cdr : 0) | 147 | print ((($ >> 28) & 0xf) == Lisp_Cons ? ((struct Lisp_Cons *) (($ & 0x0fffffff) | $data_seg_bits))->cdr : 0) |
| 148 | end | 148 | end |
| 149 | document xcdr | 149 | document xcdr |
| 150 | Print the cdr of $, assuming it is an Emacs Lisp pair. | 150 | Print the cdr of $, assuming it is an Emacs Lisp pair. |