From: Eli Zaretskii Date: Tue, 31 Jul 2012 17:34:51 +0000 (+0300) Subject: Fix 'xframe' in .gdbinit. X-Git-Tag: emacs-24.2.90~956 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e0afd9a0f4273ca55345a6ae5412a5aa6c21690;p=emacs.git Fix 'xframe' in .gdbinit. src/.gdbinit (xframe): Adapt to introduction of FVAR and the resulting renaming of 'struct frame' members. --- diff --git a/src/.gdbinit b/src/.gdbinit index 620ca63a0d6..4a140af7fd3 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -765,7 +765,7 @@ end define xframe xgetptr $ print (struct frame *) $ptr - xgetptr $->name + xgetptr $->name_ set $ptr = (struct Lisp_String *) $ptr xprintstr $ptr echo \n diff --git a/src/ChangeLog b/src/ChangeLog index 00be648ec91..061f15da73d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2012-07-31 Eli Zaretskii + * .gdbinit (xframe): Adapt to introduction of FVAR and the + resulting renaming of 'struct frame' members. + * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR. * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING