Fix build problem in fputs_maybe_filtered
authorTom Tromey <tromey@adacore.com>
Wed, 8 May 2019 16:35:09 +0000 (10:35 -0600)
committerTom Tromey <tromey@adacore.com>
Wed, 8 May 2019 16:35:09 +0000 (10:35 -0600)
When merging commit 99f20f ("Fix style bug when paging") to master, I
had to make some changes to get it to compile again.  Unfortunately, I
must not have added these to the index at the correct time, because
they were not committed.

This patch fixes the problem.

gdb/ChangeLog
2019-05-08  Tom Tromey  <tromey@adacore.com>

* utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
method.

gdb/ChangeLog
gdb/utils.c

index ca20a7c365461612d90bb264d9471ac3ff4f0a76..ec2424a5bc861b13034f7979c47fdcfe7651236f 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-08  Tom Tromey  <tromey@adacore.com>
+
+       * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
+       method.
+
 2019-05-08  Tom Tromey  <tromey@adacore.com>
 
        * utils.c (fputs_maybe_filtered): Reset style after paging, even
index 10fa5bcce64f35201dc30d92011c94b8d76ed616..968692747359af1da30d487ef3e0fdfd3a00d3f9 100644 (file)
@@ -1826,7 +1826,7 @@ fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream,
                    + (save_chars - wrap_column);
                  wrap_column = 0;      /* And disable fancy wrap */
                }
-             else if (did_paginate && can_emit_style_escape (stream))
+             else if (did_paginate && stream->can_emit_style_escape ())
                emit_style_escape (save_style, stream);
            }
        }