diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-03-24 18:02:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-03-24 18:02:26 -0700 |
commit | 41999e571135db014b641ebd242518980c2e0bff (patch) | |
tree | 87f6f5c35ae5799e9f5242a937d4dc84e9efd4af | |
parent | 90bb65d4b4162df4099c811e802e452cd42d1c72 (diff) | |
download | txr-41999e571135db014b641ebd242518980c2e0bff.tar.gz txr-41999e571135db014b641ebd242518980c2e0bff.tar.bz2 txr-41999e571135db014b641ebd242518980c2e0bff.zip |
open-process: fix regression.
TXR 228, which introduced open-subprocess, broke open-process.
* stream.c (open_process): Pass args correctly as the fourth
argument of open_subprocess, rather than the third.
-rw-r--r-- | stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4285,7 +4285,7 @@ static val open_subprocess(val name, val mode_str, val args, val fun) val open_process(val name, val mode_str, val args) { - return open_subprocess(name, mode_str, nil, args); + return open_subprocess(name, mode_str, args, nil); } #else |