summaryrefslogtreecommitdiffstats
path: root/parser.c
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 /parser.c
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 'parser.c')
-rw-r--r--parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.c b/parser.c
index a6aaf096..bc01c2bf 100644
--- a/parser.c
+++ b/parser.c
@@ -1470,7 +1470,7 @@ val repl(val bindings, val in_stream, val out_stream, val env)
val home = if3(repl_level == 1, get_home_path(), nil);
val histfile = if2(home, scat2(home, lit("/.txr_history")));
const wchar_t *histfile_w = if3(home, c_str(histfile), NULL);
- val rcfile = if2(home, scat2(home, lit("/.txr_profile")));
+ val rcfile = if2(home && !opt_noprofile, scat2(home, lit("/.txr_profile")));
val old_sig_handler = set_sig_handler(num(SIGINT), func_n2(repl_intr));
val hist_len_var = lookup_global_var(listener_hist_len_s);
val multi_line_var = lookup_global_var(listener_multi_line_p_s);