diff options
author | Tom Tromey <tromey@redhat.com> | 2008-08-29 18:31:34 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-08-29 18:31:34 +0000 |
commit | ef4cb050f66dc9dbdb0431855b7e532409b8c589 (patch) | |
tree | 78e971c8926f602e9195675b03f9c5cfb021dcc9 /gdb | |
parent | a683b3c093845042fd839b867385ad8348c7e51a (diff) | |
download | gdb-ef4cb050f66dc9dbdb0431855b7e532409b8c589.zip gdb-ef4cb050f66dc9dbdb0431855b7e532409b8c589.tar.gz gdb-ef4cb050f66dc9dbdb0431855b7e532409b8c589.tar.bz2 |
* maint.c (_initialize_maint_cmds): Fix typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/maint.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ece02f1..10ffe85 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2008-08-29 Tom Tromey <tromey@redhat.com> + * maint.c (_initialize_maint_cmds): Fix typo. + +2008-08-29 Tom Tromey <tromey@redhat.com> + * dwarf2read.c (dwarf2_build_psymtabs_hard): Copy dirname on obstack. diff --git a/gdb/maint.c b/gdb/maint.c index 62cefd9..3190bd7 100644 --- a/gdb/maint.c +++ b/gdb/maint.c @@ -850,14 +850,14 @@ Takes an optional file parameter."), add_cmd ("deprecate", class_maintenance, maintenance_deprecate, _("\ Deprecate a command. Note that this is just in here so the \n\ -testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\ +testsuite can check the command deprecator. You probably shouldn't use this,\n\ rather you should use the C function deprecate_cmd(). If you decide you \n\ want to use it: maintenance deprecate 'commandname' \"replacement\". The \n\ replacement is optional."), &maintenancelist); add_cmd ("undeprecate", class_maintenance, maintenance_undeprecate, _("\ Undeprecate a command. Note that this is just in here so the \n\ -testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\ +testsuite can check the command deprecator. You probably shouldn't use this,\n\ If you decide you want to use it: maintenance undeprecate 'commandname'"), &maintenancelist); |