*p++ = *name++;
*p++ = '\0';
/* Print in columns. */
- puts_filtered_tabular(asel, maxlen + 1, 0);
+ puts_tabular(asel, maxlen + 1, 0);
}
begin_line();
}
*p++ = *name++;
*p++ = '\0';
/* Print in columns. */
- puts_filtered_tabular(aclass, maxlen + 1, 0);
+ puts_tabular(aclass, maxlen + 1, 0);
}
begin_line();
}
}
}
-/* 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;
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);