* maint.c (_initialize_maint_cmds): Fix typo.

This commit is contained in:
Tom Tromey 2008-08-29 18:31:34 +00:00
parent a683b3c093
commit ef4cb050f6
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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);