]> git.eshelyaron.com Git - emacs.git/commitdiff
(pitx) Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Sat, 26 Dec 2009 15:56:43 +0000 (15:56 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 26 Dec 2009 15:56:43 +0000 (15:56 +0000)
src/.gdbinit
src/ChangeLog

index 949dfbfd480aa9d3f923e922323b113f1ed55579..e8a64f5dfe419e5be586830448ced2f384b95fe4 100644 (file)
@@ -222,7 +222,8 @@ define pitx
   if ($it->sp != 0)
     printf " sp=%d", $it->sp
   end
-  if ($it->what == 0) # IT_CHARACTER
+  # IT_CHARACTER
+  if ($it->what == 0)
     if ($it->len == 1 && $it->c >= ' ' && it->c < 255)
       printf " ch='%c'", $it->c
     else
@@ -256,13 +257,16 @@ define pitx
       output $it->what
     end
   end
-  if ($it->method != 0) # GET_FROM_BUFFER
+  if ($it->method != 0)
+    # !GET_FROM_BUFFER
     printf " next="
     pitmethod $it->method
-    if ($it->method == 2) # GET_FROM_STRING
+    if ($it->method == 2)
+      # GET_FROM_STRING
       printf "[%d]", $it->current.string_pos.charpos
     end
-    if ($it->method == 4) # GET_FROM_IMAGE
+    if ($it->method == 4)
+      # GET_FROM_IMAGE
       printf "[%d]", $it->image_id
     end
   end
index 18a1a1cee3e8f383750a36c9adc11b1093ce4e7d..eab6e169659be8f938fb44c6cdfc67d2d839deb8 100644 (file)
@@ -2,6 +2,7 @@
 
        * .gdbinit (pgx): Fix display of composite glyphs.  Display
        cmp.from and cmp.to as well.
+       (pitx) Fix last change.
 
 2009-12-19  Eli Zaretskii  <eliz@gnu.org>