* cli/cli-decode.c (help_cmd): Fix thinko in pre/post hook help output.
authorDoug Evans <dje@google.com>
Fri, 29 Aug 2008 23:52:34 +0000 (23:52 +0000)
committerDoug Evans <dje@google.com>
Fri, 29 Aug 2008 23:52:34 +0000 (23:52 +0000)
gdb/ChangeLog
gdb/cli/cli-decode.c

index 10ffe85a2f5caf9da6d5b7d7267282ed08d0629b..d3feea3de4fdad9561f4402623bd675b6f229c47 100644 (file)
@@ -1,3 +1,7 @@
+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 5b1a7e08581ddeb41256845d5c81071ab96870dc..0889040ae99089ae97d25d3aaa256bde38cf525f 100644 (file)
@@ -797,12 +797,12 @@ help_cmd (char *command, struct ui_file *stream)
                       "\nThis command has a hook (or hooks) defined:\n");
 
   if (c->hook_pre)
-    fprintf_filtered (stream, 
-                      "\tThis command is run after  : %s (pre hook)\n",
+    fprintf_filtered (stream,
+                      "\tThis command is run before : %s (pre hook)\n",
                     c->hook_pre->name);
   if (c->hook_post)
-    fprintf_filtered (stream, 
-                      "\tThis command is run before : %s (post hook)\n",
+    fprintf_filtered (stream,
+                      "\tThis command is run after  : %s (post hook)\n",
                     c->hook_post->name);
 }
 
@@ -1673,5 +1673,3 @@ cmd_func (struct cmd_list_element *cmd, char *args, int from_tty)
   else
     error (_("Invalid command"));
 }
-
-