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:
parent
d0b1020bf1
commit
9fbf7f083e
3 changed files with 9 additions and 10 deletions
13
gdb/utils.c
13
gdb/utils.c
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue