Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ed87760c
Commit
ed87760c
authored
Nov 26, 2013
by
Andreas Schwab
Browse files
* .gdbinit (xgettype): Add cast.
parent
0bf3f0fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/.gdbinit
src/.gdbinit
+1
-1
src/ChangeLog
src/ChangeLog
+4
-0
No files found.
src/.gdbinit
View file @
ed87760c
...
...
@@ -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.
...
...
src/ChangeLog
View file @
ed87760c
2013-11-26 Andreas Schwab <schwab@suse.de>
* .gdbinit (xgettype): Add cast.
2013-11-26 Glenn Morris <rgm@gnu.org>
Preload leim-list.el.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment