diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-08 19:54:35 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-08 19:54:35 -0800 |
commit | 4abffc416e2bc48547e7b8753643abce063dc729 (patch) | |
tree | 974759b74c7224e26dad66858b4f33d03640f0e3 /match.c | |
parent | fd87267eb4802d1e3ec3c22a48e09a86f76810ad (diff) | |
download | txr-4abffc416e2bc48547e7b8753643abce063dc729.tar.gz txr-4abffc416e2bc48547e7b8753643abce063dc729.tar.bz2 txr-4abffc416e2bc48547e7b8753643abce063dc729.zip |
Drop the annoying need for - for standard input.
* match.c (open_data_source): If there is nothing
in the files array and data is t (indicating a request
to open a data source), then use standard input.
Subject to the compatibility option.
* Makefile (txr-manpage.html): Drop use of
the txr - argument in rule recipe.
* txr.1: Document that - isn't necessary.
Added to compatibility notes.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -4427,7 +4427,15 @@ static void open_data_source(match_files_ctx *c) c->data = nil; } } else if (c->data == t && c->files == nil) { - c->data = nil; + if (opt_compat && opt_compat <= 170) { + c->data = nil; + } else { + spec_bind (specline, first_spec, c->spec); + debuglf(first_spec, lit("opening standard input as data source"), nao); + c->curfile = lit("-"); + c->data = lazy_stream_cons(std_input); + c->data_lineno = one; + } } } |