diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/.gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index 8299b814564..317db96aa42 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -51,7 +51,7 @@ Print the specific type of $, assuming it is some misc type. | |||
| 51 | end | 51 | end |
| 52 | 52 | ||
| 53 | define xint | 53 | define xint |
| 54 | print (($ & 0x00ffffff) << 4) >> 4 | 54 | print (($ & 0x0fffffff) << 4) >> 4 |
| 55 | end | 55 | end |
| 56 | document xint | 56 | document xint |
| 57 | Print $, assuming it is an Emacs Lisp integer. This gets the sign right. | 57 | Print $, assuming it is an Emacs Lisp integer. This gets the sign right. |