]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix GDB xwindow command.
authorEli Zaretskii <eliz@gnu.org>
Mon, 28 Jul 2014 07:10:17 +0000 (10:10 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 28 Jul 2014 07:10:17 +0000 (10:10 +0300)
 src/.gdbinit (xwindow): The members total_cols, total_lines,
 left_col, and top_line are C integers (and has been so for the
 last 1.5 years).

src/.gdbinit
src/ChangeLog

index 715744bc18eabc5ef227134aed340b8b6b9a795c..a74fe3db7a1d1e67f1217ef912dfe3f5213a816f 100644 (file)
@@ -820,15 +820,7 @@ define xwindow
   xgetptr $
   print (struct window *) $ptr
   set $window = (struct window *) $ptr
-  xgetint $window->total_cols
-  set $width=$int
-  xgetint $window->total_lines
-  set $height=$int
-  xgetint $window->left_col
-  set $left=$int
-  xgetint $window->top_line
-  set $top=$int
-  printf "%dx%d+%d+%d\n", $width, $height, $left, $top
+  printf "%dx%d+%d+%d\n", $window->total_cols, $window->total_lines, $window->left_col, $window->top_line
 end
 document xwindow
 Print $ as a window pointer, assuming it is an Emacs Lisp window value.
index f39526f4f4b0d750dd5b0e9504f9f1bd3ca5665e..64fb82b78a3d27943725592332ecb8559075aed2 100644 (file)
@@ -1,3 +1,9 @@
+2014-07-28  Eli Zaretskii  <eliz@gnu.org>
+
+       * .gdbinit (xwindow): The members total_cols, total_lines,
+       left_col, and top_line are C integers (and has been so for the
+       last 1.5 years).
+
 2014-07-20  Jan Djärv  <jan.h.d@swipnet.se>
 
        * nsterm.m (applicationDidFinishLaunching:): Call