(pitx): Fix output format. Print string charpos.
authorKim F. Storm <storm@cua.dk>
Thu, 14 Jul 2005 11:30:35 +0000 (11:30 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 14 Jul 2005 11:30:35 +0000 (11:30 +0000)
src/.gdbinit

index 8b1dcb4..ea1ac2e 100644 (file)
@@ -129,20 +129,24 @@ define pitx
   end
   if ($it->what == IT_CHARACTER)
     if ($it->len == 1 && $it->c >= ' ' && it->c < 255)
-      printf "ch='%c'", $it->c
+      printf " ch='%c'", $it->c
     else
-      printf "ch=[%d,%d]", $it->c, $it->len
+      printf " ch=[%d,%d]", $it->c, $it->len
     end
   else
     if ($it->what == IT_IMAGE)
-      printf "IMAGE=%d", $it->image_id
+      printf " IMAGE=%d", $it->image_id
     else
+      printf " "
       output $it->what
     end
   end
   if ($it->method != GET_FROM_BUFFER)
     printf " next="
     output $it->method
+    if ($it->method == GET_FROM_STRING)
+      printf "[%d]", $it->current.string_pos.charpos
+    end
   end
   printf "\n"
   if ($it->region_beg_charpos >= 0)