emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115240: * .gdbinit (xgettype): Add cast.


From: Andreas Schwab
Subject: [Emacs-diffs] trunk r115240: * .gdbinit (xgettype): Add cast.
Date: Tue, 26 Nov 2013 09:01:21 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115240
revision-id: address@hidden
parent: address@hidden
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Tue 2013-11-26 10:00:32 +0100
message:
  * .gdbinit (xgettype): Add cast.
modified:
  src/.gdbinit                   gdbinit-20091113204419-o5vbwnq5f7feedwu-460
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
=== modified file 'src/.gdbinit'
--- a/src/.gdbinit      2013-06-03 09:01:53 +0000
+++ b/src/.gdbinit      2013-11-26 09:00:32 +0000
@@ -67,7 +67,7 @@
   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.

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-11-26 01:06:23 +0000
+++ b/src/ChangeLog     2013-11-26 09:00:32 +0000
@@ -1,3 +1,7 @@
+2013-11-26  Andreas Schwab  <address@hidden>
+
+       * .gdbinit (xgettype): Add cast.
+
 2013-11-26  Glenn Morris  <address@hidden>
 
        Preload leim-list.el.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]