win32: correct initial help message.
This commit is contained in:
parent
3fa5b3ce0a
commit
8c4080b97f
4
stdcmd.c
4
stdcmd.c
|
@ -103,7 +103,11 @@ int cmd_help(char **arg)
|
||||||
vector_destroy(&v);
|
vector_destroy(&v);
|
||||||
|
|
||||||
printc("Type \"help <topic>\" for more information.\n");
|
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");
|
printc("Press Ctrl+D to quit.\n");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue