diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:54:06 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:25 -0600 |
commit | 9fbf7f083e21263b0a0e1f76d615adaa4e13cfe5 (patch) | |
tree | 82f2b1f6a73b856cc1033ad91c11986cdf6b6bb2 /gdb/objc-lang.c | |
parent | d0b1020bf1f9f0e3824d61cd3821e3ea7773f828 (diff) | |
download | binutils-9fbf7f083e21263b0a0e1f76d615adaa4e13cfe5.zip binutils-9fbf7f083e21263b0a0e1f76d615adaa4e13cfe5.tar.gz binutils-9fbf7f083e21263b0a0e1f76d615adaa4e13cfe5.tar.bz2 |
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.)
Diffstat (limited to 'gdb/objc-lang.c')
-rw-r--r-- | gdb/objc-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/objc-lang.c b/gdb/objc-lang.c index e116fbe..ed13097 100644 --- a/gdb/objc-lang.c +++ b/gdb/objc-lang.c @@ -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(); } |