summaryrefslogtreecommitdiff
path: root/gdb/cli
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-08-30 01:54:11 +0000
committerDoug Evans <dje@google.com>2008-08-30 01:54:11 +0000
commit72fe08328d765d791e2f4eeadc8d7add73ba4bad (patch)
tree9bee4cef15e05dd3281dab262dcaa24eb6382be2 /gdb/cli
parent4dc1b553ac559d64b5a211b96a55338cf2384887 (diff)
downloadbinutils-gdb-72fe08328d765d791e2f4eeadc8d7add73ba4bad.tar.gz
revert previous change, like interpreting English is obvious ...
Diffstat (limited to 'gdb/cli')
-rw-r--r--gdb/cli/cli-decode.c4
1 files changed, 2 insertions, 2 deletions
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);
}