aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-09-03 15:41:24 -0600
committerTom Tromey <tom@tromey.com>2018-09-26 05:15:31 -0600
commit57dbb3afed804c8e0c350563339f5f3de2ded910 (patch)
tree20c0686f65c6b00ed6bc9beec79e474c3770975c
parent7504c64dd98ef6c85b15599a0d267a5179b70f50 (diff)
downloadgdb-57dbb3afed804c8e0c350563339f5f3de2ded910.zip
gdb-57dbb3afed804c8e0c350563339f5f3de2ded910.tar.gz
gdb-57dbb3afed804c8e0c350563339f5f3de2ded910.tar.bz2
Small fix for "winheight" usage
I noticed that the usage string for "winheight" has a couple of extraneous ">"s in it. I must have forgotten to remove these back when I changed the text to use the GNU style for metasyntactic variables. gdb/ChangeLog 2018-09-26 Tom Tromey <tom@tromey.com> * tui/tui-win.c (WIN_HEIGHT_USAGE): Remove extra ">"s.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/tui/tui-win.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 13fac92..19a6566 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-09-26 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-win.c (WIN_HEIGHT_USAGE): Remove extra ">"s.
+
2018-09-24 Tom Tromey <tom@tromey.com>
* common/pathstuff.c (get_standard_cache_dir): Make
diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c
index c42d7f0..225c6e9 100644
--- a/gdb/tui/tui-win.c
+++ b/gdb/tui/tui-win.c
@@ -78,7 +78,7 @@ static void parse_scrolling_args (const char *,
/***************************************
** DEFINITIONS
***************************************/
-#define WIN_HEIGHT_USAGE "Usage: winheight WINDOW-NAME> [+ | -] NUM-LINES>\n"
+#define WIN_HEIGHT_USAGE "Usage: winheight WINDOW-NAME [+ | -] NUM-LINES\n"
#define FOCUS_USAGE "Usage: focus [WINDOW-NAME | next | prev]\n"
/***************************************