win32: correct initial help message.

This commit is contained in:
Daniel Beer 2011-07-27 02:28:40 +12:00
parent 3fa5b3ce0a
commit 8c4080b97f
1 changed files with 4 additions and 0 deletions

View File

@ -103,7 +103,11 @@ int cmd_help(char **arg)
vector_destroy(&v);
printc("Type \"help <topic>\" for more information.\n");
#ifdef WIN32
printc("Press Ctrl+Z, Enter to quit.\n");
#else
printc("Press Ctrl+D to quit.\n");
#endif
}
return 0;