File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66#include "util.h"
77
88static const char * version_matches [] = {"-v" , "--version" , NULL };
9- static const char * help_matches [] = {"-h" , "-?" , "- -help" , NULL };
9+ static const char * help_matches [] = {"-h" , "--help" , NULL };
1010
1111/* Print off the current version of laco */
1212static void handle_version (LacoState * laco , const char * * arguments ) {
@@ -20,8 +20,8 @@ static void handle_version(LacoState* laco, const char** arguments) {
2020static void handle_help (LacoState * laco , const char * * arguments ) {
2121 puts ("A better REPL for Lua.\n" );
2222 puts ("Usage: laco [options]\n" );
23- puts ("-h | -? | -- help \tPrint this help screen" );
24- puts ("-v | --version \tPrint current version" );
23+ puts ("-h | -- help \tPrint this help screen" );
24+ puts ("-v | --version \tPrint current version" );
2525
2626 laco_kill (laco , 0 , NULL );
2727}
You can’t perform that action at this time.
0 commit comments