diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2023-12-27 17:11:25 +0100 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2023-12-27 17:11:25 +0100 |
commit | e6da06e4f683728b397621d278d51cfd68d309df (patch) | |
tree | 6a8a388415f0b934533558c5a6cb929831f88706 | |
parent | 6e4931c4ad6c1f06cd1e46ecbf98e04cbb8b4ba7 (diff) | |
download | quickjs-e6da06e4f683728b397621d278d51cfd68d309df.tar.gz quickjs-e6da06e4f683728b397621d278d51cfd68d309df.zip |
typos
-rw-r--r-- | qjsc.c | 4 | ||||
-rw-r--r-- | unicode_gen.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -344,8 +344,8 @@ void help(void) "usage: " PROG_NAME " [options] [files]\n" "\n" "options are:\n" - "-c only output bytecode in a C file\n" - "-e output main() and bytecode in a C file (default = executable output)\n" + "-c only output bytecode to a C file\n" + "-e output main() and bytecode to a C file (default = executable output)\n" "-o output set the output filename\n" "-N cname set the C name of the generated data\n" "-m compile as Javascript module (default=autodetect)\n" diff --git a/unicode_gen.c b/unicode_gen.c index f18aaa0..d76f94f 100644 --- a/unicode_gen.c +++ b/unicode_gen.c @@ -217,7 +217,7 @@ static const char *unicode_prop_short_name[] = { #undef DEF }; -#undef UNICODE_SPROP_LIST +#undef UNICODE_PROP_LIST typedef struct { /* case conv */ |