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 eb4d57a5fbb..7a0cf02ea13 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -1355,7 +1355,7 @@ if hasattr(gdb, 'printing'):
1355 if itype == Lisp_Int0 or itype == Lisp_Int1: 1355 if itype == Lisp_Int0 or itype == Lisp_Int1:
1356 if USE_LSB_TAG: 1356 if USE_LSB_TAG:
1357 ival = ival >> (GCTYPEBITS - 1) 1357 ival = ival >> (GCTYPEBITS - 1)
1358 elif (ival >> VALBITS) & 1: 1358 if (ival >> VALBITS) & 1:
1359 ival = ival | (-1 << VALBITS) 1359 ival = ival | (-1 << VALBITS)
1360 else: 1360 else:
1361 ival = ival & ((1 << VALBITS) - 1) 1361 ival = ival & ((1 << VALBITS) - 1)