diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-21 17:43:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-21 17:43:38 -0300 |
commit | 313b2fe902a3fb2a3fef093ca63ed01679ed5e52 (patch) | |
tree | 97c1ec47db397198fb862772425de317670493b5 | |
parent | 425e5813b0e9c43889b8649c87c8ac693e6afd11 (diff) | |
download | lua-313b2fe902a3fb2a3fef093ca63ed01679ed5e52.tar.gz lua-313b2fe902a3fb2a3fef093ca63ed01679ed5e52.tar.bz2 lua-313b2fe902a3fb2a3fef093ca63ed01679ed5e52.zip |
detail
-rw-r--r-- | lua.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.104 2002/09/05 19:45:42 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.105 2002/09/20 13:32:56 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -74,11 +74,11 @@ static void laction (int i) { | |||
74 | 74 | ||
75 | static void print_usage (void) { | 75 | static void print_usage (void) { |
76 | fprintf(stderr, | 76 | fprintf(stderr, |
77 | "usage: %s [options] [prog [args]].\n" | 77 | "usage: %s [options] [script [args]].\n" |
78 | "Available options are:\n" | 78 | "Available options are:\n" |
79 | " - execute stdin as a file\n" | 79 | " - execute stdin as a file\n" |
80 | " -e stat execute string `stat'\n" | 80 | " -e stat execute string `stat'\n" |
81 | " -i enter interactive mode after executing `prog'\n" | 81 | " -i enter interactive mode after executing `script'\n" |
82 | " -l name execute file `name'\n" | 82 | " -l name execute file `name'\n" |
83 | " -v print version information\n" | 83 | " -v print version information\n" |
84 | " -- stop handling options\n" , | 84 | " -- stop handling options\n" , |