From: Andreas Schwab Date: Tue, 26 Nov 2013 09:00:32 +0000 (+0100) Subject: * .gdbinit (xgettype): Add cast. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~691 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed87760c27c2f15108082d2eb6f47aa717b45db9;p=emacs.git * .gdbinit (xgettype): Add cast. --- diff --git a/src/.gdbinit b/src/.gdbinit index 1bfc293c466..275a1d8db88 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -67,7 +67,7 @@ define xgettype else set $bugfix = $arg0 end - set $type = (enum Lisp_Type) (USE_LSB_TAG ? $bugfix & (1 << GCTYPEBITS) - 1 : $bugfix >> VALBITS) + set $type = (enum Lisp_Type) (USE_LSB_TAG ? $bugfix & (1 << GCTYPEBITS) - 1 : (EMACS_UINT) $bugfix >> VALBITS) end # 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 @@ +2013-11-26 Andreas Schwab + + * .gdbinit (xgettype): Add cast. + 2013-11-26 Glenn Morris Preload leim-list.el.