diff options
author | Doug Evans <dje@google.com> | 2008-08-30 01:54:11 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-08-30 01:54:11 +0000 |
commit | 908677269f02133fed9dcbb60b24e156d5ada817 (patch) | |
tree | a90ffabb06acf4d2d0e5c012913295195e44a589 /gdb | |
parent | 9cd385a04b70fe774526762ba2d94d415da35b3c (diff) | |
download | gdb-908677269f02133fed9dcbb60b24e156d5ada817.tar.gz |
revert previous change, like interpreting English is obvious ...
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/cli/cli-decode.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d3feea3de4f..10ffe85a2f5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,7 +1,3 @@ -2008-08-29 Doug Evans <dje@google.com> - - * cli/cli-decode.c (help_cmd): Fix thinko in pre/post hook help output. - 2008-08-29 Tom Tromey <tromey@redhat.com> * maint.c (_initialize_maint_cmds): Fix typo. diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index 0889040ae99..9cc52bab471 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -798,11 +798,11 @@ help_cmd (char *command, struct ui_file *stream) if (c->hook_pre) fprintf_filtered (stream, - "\tThis command is run before : %s (pre hook)\n", + "\tThis command is run after : %s (pre hook)\n", c->hook_pre->name); if (c->hook_post) fprintf_filtered (stream, - "\tThis command is run after : %s (post hook)\n", + "\tThis command is run before : %s (post hook)\n", c->hook_post->name); } |