Rename puts_filtered_tabular
authorTom Tromey <tom@tromey.com>
Sun, 2 Jan 2022 18:54:06 +0000 (11:54 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 29 Mar 2022 18:46:25 +0000 (12:46 -0600)
puts_filtered_tabular is now misnamed, because whether filtering
happens is now up to the stream.  So, rename it.  (This function is
pretty weird, and should probably be rewritten to avoid using the
chars_printed global, and moved into objc-lang.c.  However, I haven't
done so.)

gdb/objc-lang.c
gdb/utils.c
gdb/utils.h

index e116fbe56111d64257102f85b2932b64eaff4d38..ed13097f7a85db26ca507c3d327fbc7da784e1e2 100644 (file)
@@ -666,7 +666,7 @@ info_selectors_command (const char *regexp, int from_tty)
            *p++ = *name++;
          *p++ = '\0';
          /* Print in columns.  */
-         puts_filtered_tabular(asel, maxlen + 1, 0);
+         puts_tabular(asel, maxlen + 1, 0);
        }
       begin_line();
     }
@@ -800,7 +800,7 @@ info_classes_command (const char *regexp, int from_tty)
            *p++ = *name++;
          *p++ = '\0';
          /* Print in columns.  */
-         puts_filtered_tabular(aclass, maxlen + 1, 0);
+         puts_tabular(aclass, maxlen + 1, 0);
        }
       begin_line();
     }
index e358a5a560d970609d0bc7e6d1abd2d14eec369d..bf6f4fb9b89298525506443aea45b21a014169d3 100644 (file)
@@ -1504,15 +1504,14 @@ pager_file::wrap_here (int indent)
     }
 }
 
-/* Print input string to gdb_stdout, filtered, with wrap, 
-   arranging strings in columns of n chars.  String can be
-   right or left justified in the column.  Never prints 
-   trailing spaces.  String should never be longer than
-   width.  FIXME: this could be useful for the EXAMINE 
-   command, which currently doesn't tabulate very well.  */
+/* Print input string to gdb_stdout arranging strings in columns of n
+   chars.  String can be right or left justified in the column.  Never
+   prints trailing spaces.  String should never be longer than width.
+   FIXME: this could be useful for the EXAMINE command, which
+   currently doesn't tabulate very well.  */
 
 void
-puts_filtered_tabular (char *string, int width, int right)
+puts_tabular (char *string, int width, int right)
 {
   int spaces = 0;
   int stringlen;
index 981090e3019888368dea17bd5c8c12f8b5d9a655..8b7eccb7bb3eeaa4ec411cb962ef113e8628da7b 100644 (file)
@@ -241,7 +241,7 @@ extern int gdb_putc (int c);
 
 extern void gdb_puts (const char *);
 
-extern void puts_filtered_tabular (char *string, int width, int right);
+extern void puts_tabular (char *string, int width, int right);
 
 extern void gdb_vprintf (const char *, va_list) ATTRIBUTE_PRINTF (1, 0);