From: Karl Heuer Date: Wed, 4 Jan 1995 21:28:53 +0000 (+0000) Subject: (xint): Use correct mask. X-Git-Tag: emacs-19.34~5520 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dcda44ddbb402e5e0154105342f439d72320c823;p=emacs.git (xint): Use correct mask. --- 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. end define xint -print (($ & 0x00ffffff) << 4) >> 4 +print (($ & 0x0fffffff) << 4) >> 4 end document xint Print $, assuming it is an Emacs Lisp integer. This gets the sign right.