aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-04 21:28:53 +0000
committerKarl Heuer1995-01-04 21:28:53 +0000
commitdcda44ddbb402e5e0154105342f439d72320c823 (patch)
treedfda84b959f688a9c33bcb99f14aedefa7a72f8b /src
parent3812b1378b4c6b73186eb41de60845bf9e7ce581 (diff)
downloademacs-dcda44ddbb402e5e0154105342f439d72320c823.tar.gz
emacs-dcda44ddbb402e5e0154105342f439d72320c823.zip
(xint): Use correct mask.
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.