diff options
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -286,8 +286,13 @@ int txr_main(int argc, char **argv) opt_derivative_regex = 1; argv++, argc--; continue; + } else if (!strcmp(*argv, "--lisp-bindings")) { + opt_lisp_bindings = 1; + argv++, argc--; + continue; } + { char *popt; for (popt = (*argv)+1; *popt != 0; popt++) { @@ -301,6 +306,9 @@ int txr_main(int argc, char **argv) case 'b': opt_nobindings = 1; break; + case 'l': + opt_lisp_bindings = 1; + break; case 'a': case 'c': case 'D': |