void
print_warning_prefix (ui_file *file)
{
- if (emojis_ok ())
+ if (file->emoji_allowed () && emojis_ok ())
gdb_puts (warning_prefix.c_str (), file);
}
void
print_error_prefix (ui_file *file)
{
- if (emojis_ok ())
+ if (file->emoji_allowed () && emojis_ok ())
gdb_puts (error_prefix.c_str (), file);
}
--- /dev/null
+# Copyright (C) 2026 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+# Check that emojis are not printed in MI error messages.
+
+with_ansi_styling_terminal {
+ clean_restart
+
+ gdb_test "set style emoji on"
+
+ # Check that there is no emoji printed before the error. Regression test
+ # for PR34501.
+ set re_line \
+ [string_to_regexp \
+ {&"No symbol table is loaded. Use the \"file\" command.\n"}]
+ gdb_test {interpreter-exec mi2 "-break-insert -f foo"} \
+ "\r\n${re_line}(?=\r\n).*"
+}
virtual bool can_emit_style_escape ()
{ return false; }
+ /* True if emojis are allowed on STREAM. */
+ bool emoji_allowed ()
+ {
+ /* By default, assume that emojis are not allowed on streams that don't
+ support ANSI escapes. */
+ return can_emit_style_escape ();
+ }
+
virtual void flush ()
{}