mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-31 20:02:42 +00:00
* .gdbinit (pwinx, xbuffer): Fix access to buffer name.
This commit is contained in:
parent
ba08b24186
commit
c40f8d15c0
@ -392,7 +392,7 @@ define pwinx
|
||||
printf "Window %d ", $int
|
||||
xgetptr $w->buffer
|
||||
set $tem = (struct buffer *) $ptr
|
||||
xgetptr $tem->name
|
||||
xgetptr $tem->name_
|
||||
printf "%s", ((struct Lisp_String *) $ptr)->data
|
||||
printf "\n"
|
||||
xgetptr $w->start
|
||||
@ -938,7 +938,7 @@ end
|
||||
define xbuffer
|
||||
xgetptr $
|
||||
print (struct buffer *) $ptr
|
||||
xgetptr $->name
|
||||
xgetptr $->name_
|
||||
output ((struct Lisp_String *) $ptr)->data
|
||||
echo \n
|
||||
end
|
||||
|
@ -1,3 +1,7 @@
|
||||
2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* .gdbinit (pwinx, xbuffer): Fix access to buffer name.
|
||||
|
||||
2011-03-09 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* search.c (compile_pattern_1): Remove argument regp, unused since
|
||||
|
Loading…
Reference in New Issue
Block a user