summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2002-03-28 01:35:56 +0000
committerMichael Snyder <msnyder@specifix.com>2002-03-28 01:35:56 +0000
commit3d413843cb279a8ba8bd88bba21745b10e47e272 (patch)
tree01984c4f843d1e4c2c195dbbf593077b739b32ce
parent37410b2e4f8bfe581201d46c0e2fee189f072bf2 (diff)
downloadgdb-3d413843cb279a8ba8bd88bba21745b10e47e272.tar.gz
2002-03-27 Michael Snyder <msnyder@redhat.com>
* breakpoint.c (_initialize_breakpoint): Clean up help string. * infcmd.c (_initialize_infcmd): Ditto. * language.c (_initialize_language): Ditto. * symfile.c (_initialize_symfile): Ditto. * top.c (_init_main): Ditto. * cli/cli-cmds.c (init_cli_cmds): Ditto.
-rw-r--r--gdb/ChangeLog9
-rw-r--r--gdb/breakpoint.c2
-rw-r--r--gdb/cli/cli-cmds.c2
-rw-r--r--gdb/infcmd.c2
-rw-r--r--gdb/language.c4
-rw-r--r--gdb/symfile.c2
-rw-r--r--gdb/top.c4
7 files changed, 17 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 40fdcc7d6bf..5d247e17dee 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2002-03-27 Michael Snyder <msnyder@redhat.com>
+
+ * breakpoint.c (_initialize_breakpoint): Clean up help string.
+ * infcmd.c (_initialize_infcmd): Ditto.
+ * language.c (_initialize_language): Ditto.
+ * symfile.c (_initialize_symfile): Ditto.
+ * top.c (_init_main): Ditto.
+ * cli/cli-cmds.c (init_cli_cmds): Ditto.
+
2002-03-27 Elena Zannoni <ezannoni@redhat.com>
* rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index f1370759387..8548e438242 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -7374,7 +7374,7 @@ then no output is printed when it is hit, except what the commands print.");
add_com ("condition", class_breakpoint, condition_command,
"Specify breakpoint number N to break only if COND is true.\n\
Usage is `condition N COND', where N is an integer and COND is an\n\
-expression to be evaluated whenever breakpoint N is reached. ");
+expression to be evaluated whenever breakpoint N is reached.");
c = add_com ("tbreak", class_breakpoint, tbreak_command,
"Set a temporary breakpoint. Args like \"break\" command.\n\
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index 8458440aaa8..6ba686fce42 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -802,7 +802,7 @@ from the target.", &setlist),
&showdebuglist, "show debug ", 0, &showlist);
c = add_com ("shell", class_support, shell_escape,
- "Execute the rest of the line as a shell command. \n\
+ "Execute the rest of the line as a shell command.\n\
With no arguments, run an inferior shell.");
set_cmd_completer (c, filename_completer);
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index f14811e88ba..a10a91afc60 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1886,7 +1886,7 @@ environment to be given to the program.", &showlist);
set_cmd_completer (c, noop_completer);
add_prefix_cmd ("unset", no_class, unset_command,
- "Complement to certain \"set\" commands",
+ "Complement to certain \"set\" commands.",
&unsetlist, "unset ", 0, &cmdlist);
c = add_cmd ("environment", class_run, unset_environment_command,
diff --git a/gdb/language.c b/gdb/language.c
index 4c4036b68f7..0b37a6fbce3 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -1559,13 +1559,13 @@ _initialize_language (void)
set_cmd_cfunc (show, show_language_command);
add_prefix_cmd ("check", no_class, set_check,
- "Set the status of the type/range checker",
+ "Set the status of the type/range checker.",
&setchecklist, "set check ", 0, &setlist);
add_alias_cmd ("c", "check", no_class, 1, &setlist);
add_alias_cmd ("ch", "check", no_class, 1, &setlist);
add_prefix_cmd ("check", no_class, show_check,
- "Show the status of the type/range checker",
+ "Show the status of the type/range checker.",
&showchecklist, "show check ", 0, &showlist);
add_alias_cmd ("c", "check", no_class, 1, &showlist);
add_alias_cmd ("ch", "check", no_class, 1, &showlist);
diff --git a/gdb/symfile.c b/gdb/symfile.c
index 985d80bec17..cd9133b27f6 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -3233,7 +3233,7 @@ Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
ADDR is the starting address of the file's text.\n\
The optional arguments are section-name section-address pairs and\n\
should be specified if the data and bss segments are not contiguous\n\
-with the text. SECT is a section name to be loaded at SECT_ADDR.",
+with the text. SECT is a section name to be loaded at SECT_ADDR.",
&cmdlist);
set_cmd_completer (c, filename_completer);
diff --git a/gdb/top.c b/gdb/top.c
index 7acbb938a35..200d699344b 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -1990,7 +1990,7 @@ Without an argument, saving is enabled.", &sethistlist),
&showhistlist);
c = add_set_cmd ("size", no_class, var_integer, (char *) &history_size,
- "Set the size of the command history, \n\
+ "Set the size of the command history,\n\
ie. the number of previous commands to keep a record of.", &sethistlist);
add_show_from_set (c, &showhistlist);
set_cmd_sfunc (c, set_history_size_command);
@@ -1998,7 +1998,7 @@ ie. the number of previous commands to keep a record of.", &sethistlist);
c = add_set_cmd ("filename", no_class, var_filename,
(char *) &history_filename,
"Set the filename in which to record the command history\n\
- (the list of previous commands of which a record is kept).", &sethistlist);
+(the list of previous commands of which a record is kept).", &sethistlist);
set_cmd_completer (c, filename_completer);
add_show_from_set (c, &showhistlist);