diff options
| author | 2022-10-13 15:07:19 +0200 | |
|---|---|---|
| committer | 2022-10-13 15:07:19 +0200 | |
| commit | 3bad89b205b211f42e24ec1facf16b6a2ecb1627 (patch) | |
| tree | c69474b1d941a2775263fa96c6d7d1c7dbe89657 /repl.c | |
| parent | 1111a904dfa39bf74742549ed5a5a6d205c4b36f (diff) | |
stack effects + optimize exefn
Diffstat (limited to 'repl.c')
| -rw-r--r-- | repl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ main(int argc, char **argv) { if (!strcmp(arg, "-h") || !strcmp(arg, "--help")) { help(); goto Bye; - } else if (arg[1] == 'd') { + } else if (arg[1] == 'd' && arg[2]) { pez_debug(cx, arg + 2); } else { printf("pez: Invalid option '%s'\n", arg); |