diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-09-02 22:18:38 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-09-02 22:18:38 -0700 |
commit | acc53f437c82ed43f0211521659c7e01e1b371c9 (patch) | |
tree | 661f89b5a1b558b33882d53f07482ea5b3b24391 /txr.c | |
parent | 1572c93478c55ff14738a4b6f1b38dc41878a816 (diff) | |
download | txr-acc53f437c82ed43f0211521659c7e01e1b371c9.tar.gz txr-acc53f437c82ed43f0211521659c7e01e1b371c9.tar.bz2 txr-acc53f437c82ed43f0211521659c7e01e1b371c9.zip |
* txr.1: Document -C option.
* txr.c (opt_compat): New global variable.
(help): Describe -C option.
(txr_main): Process -C, and set opt_compat.
Ensure -C does not clump.
* txr.h (opt_compat): Declared.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -59,6 +59,7 @@ const wchli_t *version = wli(TXR_VER); const wchar_t *progname = L"txr"; static const char *progname_u8; static val progpath = nil; +int opt_compat; /* * Can implement an emergency allocator here from a fixed storage @@ -119,6 +120,8 @@ static void help(void) " option, instead of the query-file argument.\n" " This allows #! scripts to pass options through\n" " to the utility.\n" +"-C number Request backward-compatible behavior to the\n" +" specified version of TXR.\n" "--help You already know!\n" "--version Display program version\n" "--license Display software license\n" @@ -368,7 +371,7 @@ int txr_main(int argc, char **argv) return license(); if (memqual(arg, list(lit("-a"), lit("-c"), lit("-f"), - lit("-e"), lit("-p"), nao))) + lit("-e"), lit("-p"), lit("-C"), nao))) { val opt = chr_str(arg, one); @@ -383,6 +386,7 @@ int txr_main(int argc, char **argv) switch (c_chr(opt)) { case 'a': + case 'C': { val optval = int_str(arg, nil); @@ -393,8 +397,17 @@ int txr_main(int argc, char **argv) return EXIT_FAILURE; } - opt_arraydims = c_num(optval); - opt_print_bindings = 1; + if (opt == chr('a')) { + opt_arraydims = c_num(optval); + opt_print_bindings = 1; + } else { + if ((opt_compat = c_num(optval)) < 97) { + format(std_error, lit("~a: compatibility with versions " + "lower than 97 not supported by version ~a\n"), + prog_string, auto_str(version), nao); + return EXIT_FAILURE; + } + } } break; case 'c': @@ -489,6 +502,7 @@ int txr_main(int argc, char **argv) case 'e': case 'p': case 'f': + case 'C': case 'D': format(std_error, lit("~a: option -~a does not clump\n"), prog_string, opch, nao); |