mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
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:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user