diff options
author | Michael Snyder <msnyder@vmware.com> | 2002-03-28 01:35:56 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2002-03-28 01:35:56 +0000 |
commit | d4654627e1532d821bb85c904d905a52fcd229ee (patch) | |
tree | d1d297200940be06c3eab6af6423faa12c648a3b /gdb/top.c | |
parent | 6be8bc0c924e82efb481f9bd3a2011a24cd5d537 (diff) | |
download | gdb-d4654627e1532d821bb85c904d905a52fcd229ee.zip gdb-d4654627e1532d821bb85c904d905a52fcd229ee.tar.gz gdb-d4654627e1532d821bb85c904d905a52fcd229ee.tar.bz2 |
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.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |