diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-31 22:39:06 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-31 22:39:06 +0000 |
commit | 2983460bc0adabe357ba839972ea8d09c97c32a4 (patch) | |
tree | 61a2f0678bb80e1cccd6993783e8352ff6fe263c /client/commands.c | |
parent | 2f5e5ff9d6e91e7a3e478b316d6b2d23003ad80e (diff) |
Both `help' command and the `unknown command' error message now tell
the user to press `?' if he wants help.
Diffstat (limited to 'client/commands.c')
-rw-r--r-- | client/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/commands.c b/client/commands.c index 697cff6d..7612b64c 100644 --- a/client/commands.c +++ b/client/commands.c @@ -294,7 +294,7 @@ cmd_expand(char *cmd) } if (!n->cmd) { - puts("No such command."); + puts("No such command. Press `?' for help."); return NULL; } b = xmalloc(strlen(n->cmd->command) + strlen(args) + 1); |