This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Update help text in dcache.c


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=ffb2b66cabe9deefefa1312ef0b7bb064656e611

commit ffb2b66cabe9deefefa1312ef0b7bb064656e611
Author: Tom Tromey <tom@tromey.com>
Date:   Mon Apr 30 08:37:25 2018 -0600

    Update help text in dcache.c
    
    This updates some text in dcache.c to follow GNU standards.
    Here, I found a couple of spots needing an update.
    
    2018-04-29  Tom Tromey  <tom@tromey.com>
    
    	* dcache.c (dcache_info_1): Update usage text.
    	(_initialize_dcache): Update help text.

Diff:
---
 gdb/dcache.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gdb/dcache.c b/gdb/dcache.c
index 805f492..20b781f 100644
--- a/gdb/dcache.c
+++ b/gdb/dcache.c
@@ -595,7 +595,7 @@ dcache_info_1 (DCACHE *dcache, const char *exp)
       i = strtol (exp, &linestart, 10);
       if (linestart == exp || i < 0)
 	{
-	  printf_filtered (_("Usage: info dcache [linenumber]\n"));
+	  printf_filtered (_("Usage: info dcache [LINENUMBER]\n"));
           return;
 	}
 
@@ -701,9 +701,10 @@ exists only for compatibility reasons."),
   add_info ("dcache", info_dcache_command,
 	    _("\
 Print information on the dcache performance.\n\
+Usage: info dcache [LINENUMBER]\n\
 With no arguments, this command prints the cache configuration and a\n\
-summary of each line in the cache.  Use \"info dcache <lineno> to dump\"\n\
-the contents of a given line."));
+summary of each line in the cache.  With an argument, dump\"\n\
+the contents of the given line."));
 
   add_prefix_cmd ("dcache", class_obscure, set_dcache_command, _("\
 Use this command to set number of lines in dcache and line-size."),


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]