From dcda44ddbb402e5e0154105342f439d72320c823 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 4 Jan 1995 21:28:53 +0000 Subject: [PATCH] (xint): Use correct mask. --- src/.gdbinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5