diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-18 21:17:23 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-18 21:17:23 -0800 |
commit | 6dbb219a3fb2152ca9991a073df7e45c553eadf4 (patch) | |
tree | eca2b808c45c84a002efacc0f709a12d3c561bd9 /stream.c | |
parent | 96f301c72e7ca9ec7be0d1453f89fa8e6d49ee85 (diff) | |
download | txr-6dbb219a3fb2152ca9991a073df7e45c553eadf4.tar.gz txr-6dbb219a3fb2152ca9991a073df7e45c553eadf4.tar.bz2 txr-6dbb219a3fb2152ca9991a073df7e45c553eadf4.zip |
The mode argument in some stream-opening functions becomes optional.
* eval.c (eval_init): Change registration for open_file, open_tail
and open_command.
* stream.c (open_file, open_tail, open_command): mode_str argument
defaulted.
* txr.1: Updated.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -2071,7 +2071,7 @@ val open_directory(val path) val open_file(val path, val mode_str) { - FILE *f = w_fopen(c_str(path), c_str(mode_str)); + FILE *f = w_fopen(c_str(path), c_str(default_arg(mode_str, lit("r")))); if (!f) uw_throwf(file_error_s, lit("error opening ~a: ~a/~s"), @@ -2082,19 +2082,20 @@ val open_file(val path, val mode_str) val open_tail(val path, val mode_str, val seek_end_p) { - FILE *f = w_fopen(c_str(path), c_str(mode_str)); + val mode = default_arg(mode_str, lit("r")); + FILE *f = w_fopen(c_str(path), c_str(mode)); struct stdio_handle *h; val stream; unsigned long state = 0; - if (f && seek_end_p) + if (f && default_bool_arg(seek_end_p)) if (fseek(f, 0, SEEK_END) < 0) uw_throwf(file_error_s, lit("error seeking to end of ~a: ~a/~s"), path, num(errno), string_utf8(strerror(errno)), nao); stream = make_tail_stream(f, path); h = (struct stdio_handle *) stream->co.handle; - h->mode = mode_str; + h->mode = mode; if (!f) tail_strategy(stream, &state); return stream; @@ -2102,7 +2103,7 @@ val open_tail(val path, val mode_str, val seek_end_p) val open_command(val path, val mode_str) { - FILE *f = w_popen(c_str(path), c_str(mode_str)); + FILE *f = w_popen(c_str(path), c_str(default_arg(mode_str, lit("r")))); if (!f) uw_throwf(file_error_s, lit("error opening pipe ~a: ~a/~s"), |