Rename puts_filtered_tabular

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.)
This commit is contained in:
Tom Tromey 2022-01-02 11:54:06 -07:00
parent d0b1020bf1
commit 9fbf7f083e
3 changed files with 9 additions and 10 deletions

View 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);