revert previous change, like interpreting English is obvious ...
authorDoug Evans <dje@google.com>
Sat, 30 Aug 2008 01:54:11 +0000 (01:54 +0000)
committerDoug Evans <dje@google.com>
Sat, 30 Aug 2008 01:54:11 +0000 (01:54 +0000)
gdb/ChangeLog
gdb/cli/cli-decode.c

index d3feea3..10ffe85 100644 (file)
@@ -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.
index 0889040..9cc52ba 100644 (file)
@@ -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);
 }