summaryrefslogtreecommitdiffstats
path: root/txr.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-16 06:41:36 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-16 06:41:36 -0700
commit91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb (patch)
tree24330a6c9677da48078aeefc67edb7dccafd22c2 /txr.h
parent60301ab68ec6a6b7ecb72f83d411c651e029a587 (diff)
downloadtxr-91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb.tar.gz
txr-91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb.tar.bz2
txr-91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb.zip
listener: new --noprofile option.
* parser.c (repl): Set the rcfile variable to nil if opt_noprofile is true, to suppress reading it. * txr.c (op_noprofile): New global variable. (help): Add help text. (txr_main): Recognize noprofile option and set variable. * txr.h (opt_noprofile): Declared. * txr.1: Documented.
Diffstat (limited to 'txr.h')
-rw-r--r--txr.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/txr.h b/txr.h
index 6df9ed69..ea5cf066 100644
--- a/txr.h
+++ b/txr.h
@@ -39,6 +39,7 @@ extern int opt_compat;
extern int opt_debugger;
extern int opt_dbg_autoload;
extern int opt_dbg_expansion;
+extern int opt_noprofile;
extern alloc_bytes_t opt_gc_delta;
extern const wchli_t *version;
extern wchar_t *progname;