mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
Always call the wrap_here method
This changes all existing calls to wrap_here to call the method on the appropriate ui_file instead. The choice of ui_file is determined by context.
This commit is contained in:
@@ -1118,7 +1118,7 @@ The following disassembler options are supported for use with the\n\
|
||||
fprintf_filtered (file, "%s", valid_options->arg[i]->name);
|
||||
if (valid_options->name[i + 1] != NULL)
|
||||
fprintf_filtered (file, ", ");
|
||||
wrap_here (2);
|
||||
file->wrap_here (2);
|
||||
}
|
||||
fprintf_filtered (file, "\n");
|
||||
}
|
||||
@@ -1136,7 +1136,7 @@ The following disassembler options are supported for use with the\n\
|
||||
for (j = 0; valid_args[i].values[j] != NULL; j++)
|
||||
{
|
||||
fprintf_filtered (file, " %s", valid_args[i].values[j]);
|
||||
wrap_here (3);
|
||||
file->wrap_here (3);
|
||||
}
|
||||
fprintf_filtered (file, "\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user