Add usage to printf command
authorTom Tromey <tom@tromey.com>
Wed, 14 Feb 2018 17:18:25 +0000 (10:18 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 14 Mar 2018 15:44:32 +0000 (09:44 -0600)
This patch adds the "Usage:" text to the printf command's help text,
and tries to improve the text a tiny bit.

gdb/ChangeLog
2018-03-14  Tom Tromey  <tom@tromey.com>

* printcmd.c (_initialize_printcmd): Add usage to printf.

gdb/ChangeLog
gdb/printcmd.c

index f1b3b31..ba227ab 100644 (file)
@@ -1,3 +1,7 @@
+2018-03-14  Tom Tromey  <tom@tromey.com>
+
+       * printcmd.c (_initialize_printcmd): Add usage to printf.
+
 2018-03-14  Yao Qi  <qiyao@sourceware.org>
 
        * MAINTAINERS: Update my email address.
index fc9d7e4..13b967f 100644 (file)
@@ -2680,8 +2680,9 @@ No argument means cancel all automatic-display expressions.\n\
 Do \"info display\" to see current list of code numbers."), &deletelist);
 
   add_com ("printf", class_vars, printf_command, _("\
-printf \"printf format string\", arg1, arg2, arg3, ..., argn\n\
-This is useful for formatted output in user-defined commands."));
+Formatted printing, like the C \"printf\" function.\n\
+Usage: printf \"format string\", arg1, arg2, arg3, ..., argn\n\
+This supports most C printf format specifications, like %s, %d, etc."));
 
   add_com ("output", class_vars, output_command, _("\
 Like \"print\" but don't put in value history and don't print newline.\n\