aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit2
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.
51end 51end
52 52
53define xint 53define xint
54print (($ & 0x00ffffff) << 4) >> 4 54print (($ & 0x0fffffff) << 4) >> 4
55end 55end
56document xint 56document xint
57Print $, assuming it is an Emacs Lisp integer. This gets the sign right. 57Print $, assuming it is an Emacs Lisp integer. This gets the sign right.