+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.
"\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);
}
else
error (_("Invalid command"));
}
-
-