aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2013-11-26 10:00:32 +0100
committerAndreas Schwab2013-11-26 10:00:32 +0100
commited87760c27c2f15108082d2eb6f47aa717b45db9 (patch)
tree0ecb1300670b7f0efbc6a71e9e01ac0c950b50a1 /src
parent0bf3f0fadfff621a25a7a7a260ab5c3d51b59716 (diff)
downloademacs-ed87760c27c2f15108082d2eb6f47aa717b45db9.tar.gz
emacs-ed87760c27c2f15108082d2eb6f47aa717b45db9.zip
* .gdbinit (xgettype): Add cast.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit2
-rw-r--r--src/ChangeLog4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 1bfc293c466..275a1d8db88 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -67,7 +67,7 @@ define xgettype
67 else 67 else
68 set $bugfix = $arg0 68 set $bugfix = $arg0
69 end 69 end
70 set $type = (enum Lisp_Type) (USE_LSB_TAG ? $bugfix & (1 << GCTYPEBITS) - 1 : $bugfix >> VALBITS) 70 set $type = (enum Lisp_Type) (USE_LSB_TAG ? $bugfix & (1 << GCTYPEBITS) - 1 : (EMACS_UINT) $bugfix >> VALBITS)
71end 71end
72 72
73# Set up something to print out s-expressions. 73# Set up something to print out s-expressions.
diff --git a/src/ChangeLog b/src/ChangeLog
index 9a32c174d8f..d2dbc187da9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-11-26 Andreas Schwab <schwab@suse.de>
2
3 * .gdbinit (xgettype): Add cast.
4
12013-11-26 Glenn Morris <rgm@gnu.org> 52013-11-26 Glenn Morris <rgm@gnu.org>
2 6
3 Preload leim-list.el. 7 Preload leim-list.el.