diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-16 06:41:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-16 06:41:36 -0700 |
commit | 91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb (patch) | |
tree | 24330a6c9677da48078aeefc67edb7dccafd22c2 /txr.1 | |
parent | 60301ab68ec6a6b7ecb72f83d411c651e029a587 (diff) | |
download | txr-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.1')
-rw-r--r-- | txr.1 | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -982,6 +982,12 @@ The re-executed image will then obtain the script name from the arguments which are passed to it and determine whether that script will run setuid. See the section SETUID/SETGID OPERATION. +.coIP --noprofile +If entering the interactive listener, suppress the reading of the +.code .txr_profile +in the home directory. See the Interactive Profile File subsection in the +INTERACTIVE LISTENER section of the manual. + .coIP --gc-debug This option enables a behavior which stresses the garbage collector with frequent garbage collection requests. The purpose is to make it more likely @@ -81246,7 +81252,9 @@ is still processed, as usual. .SS* Interactive Profile File -When the listener starts up, it looks for file called +Unless the +.code --noprofile +option has been used, when the listener starts up, it looks for file called .code .txr_profile in the user's home directory, as determined by the .code HOME |