Add ui_file::wrap_here
authorTom Tromey <tom@tromey.com>
Thu, 30 Dec 2021 17:23:18 +0000 (10:23 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 26 Jan 2022 22:19:13 +0000 (15:19 -0700)
commit7016a382b0dc48001cb5c36e56b42fc41b1303a8
tree5190cb314252a75138fabb04aa925355e8f9f0a4
parent6c92c339539ec87dc12783e9c8f1688a4a370c03
Add ui_file::wrap_here

Right now, wrap_here is a global function.  In the long run, we'd like
output streams to be relatively self-contained objects, and having a
global function like this is counter to that goal.  Also, existing
code freely mixes writes to some parameterized stream with calls to
wrap_here -- but wrap_here only really affects gdb_stdout, so this is
also incoherent.

This step is a patch toward making wrap_here more sane.  It adds a
wrap_here method to ui_file and changes ui_out implementations to use
it.
gdb/cli-out.c
gdb/mi/mi-out.c
gdb/ui-file.c
gdb/ui-file.h