diff options
author | Tom Tromey <tromey@adacore.com> | 2025-05-09 13:43:17 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2025-05-09 13:43:17 -0600 |
commit | 3fabf85b5cb0271fcd70047489a6513362cb4ea9 (patch) | |
tree | d335b3a1f6aad8a1ba5ee15aa8336a06434b87ae | |
parent | c263ba026a5674009d3617556a5adb60fcb1c923 (diff) | |
download | binutils-3fabf85b5cb0271fcd70047489a6513362cb4ea9.zip binutils-3fabf85b5cb0271fcd70047489a6513362cb4ea9.tar.gz binutils-3fabf85b5cb0271fcd70047489a6513362cb4ea9.tar.bz2 |
Fix two comments in cli-style.c
I noticed that a couple of new comments in cli-style.c mentioned the
wrong command name. This patch fixes the comments.
-rw-r--r-- | gdb/cli/cli-style.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-style.c b/gdb/cli/cli-style.c index 34592f0..e644127 100644 --- a/gdb/cli/cli-style.c +++ b/gdb/cli/cli-style.c @@ -453,7 +453,7 @@ no_emojis () /* Emoji warning prefix. */ static std::string warning_prefix = "⚠️ "; -/* Implement 'show warning-prefix'. */ +/* Implement 'show style warning-prefix'. */ static void show_warning_prefix (struct ui_file *file, int from_tty, @@ -475,7 +475,7 @@ print_warning_prefix (ui_file *file) /* Emoji error prefix. */ static std::string error_prefix = "❌️ "; -/* Implement 'show error-prefix'. */ +/* Implement 'show style error-prefix'. */ static void show_error_prefix (struct ui_file *file, int from_tty, |