diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-06-09 07:13:59 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-06-09 07:13:59 -0700 |
commit | 26e61191b5b5eb346be5f6c245b98d8e1c0fe718 (patch) | |
tree | e8f7f1b3cec4cbe9c6df2f03f507232866cb5deb /stream.c | |
parent | c27a97c95c628ff1e49339f82537bbf3719ab75a (diff) | |
download | txr-26e61191b5b5eb346be5f6c245b98d8e1c0fe718.tar.gz txr-26e61191b5b5eb346be5f6c245b98d8e1c0fe718.tar.bz2 txr-26e61191b5b5eb346be5f6c245b98d8e1c0fe718.zip |
The dumping of bindings and printing of false must now
be explicitly requested by the -B option.
* match.c (opt_nobindings): Variable removed.
(opt_print_bindings): New variable.
(extract): Print bindings or "false" if opt_print_bindings is true.
* stream.c (output_produced): Variable removed.
(stdio_put_string, stdio_put_char, stdio_put_byte): Remove
update of output_produced.
* stream.h (output_produced): Declaration removed.
* txr.1: Documentation updated.
* txr.c (txr_main): Option 'b' does nothing. 'B', 'l', 'a',
and '--lisp-bindings' set opt_print_bindings to 1.
* txr.h (opt_nobindings): Declaration removed.
(opt_print_bindings): Declared.
* unwind.c (uw_throw): When exiting due to a query error or
file error, print false when opt_print_bindings is true.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -62,8 +62,6 @@ #include "utf8.h" #include "eval.h" -val output_produced; - val stdin_s, stdout_s, stddebug_s, stderr_s, stdnull_s; val dev_k, ino_k, mode_k, nlink_k, uid_k; @@ -219,9 +217,6 @@ static val stdio_put_string(val stream, val str) { struct stdio_handle *h = (struct stdio_handle *) stream->co.handle; - if (stream != std_debug && stream != std_error) - output_produced = t; - if (h->f != 0) { const wchar_t *s = c_str(str); @@ -238,9 +233,6 @@ static val stdio_put_char(val stream, val ch) { struct stdio_handle *h = (struct stdio_handle *) stream->co.handle; - if (stream != std_debug && stream != std_error) - output_produced = t; - return h->f != 0 && utf8_encode(c_chr(ch), stdio_put_char_callback, (mem_t *) h->f) ? t : stdio_maybe_error(stream, lit("writing")); } @@ -249,9 +241,6 @@ static val stdio_put_byte(val stream, int b) { struct stdio_handle *h = (struct stdio_handle *) stream->co.handle; - if (stream != std_debug && stream != std_error) - output_produced = t; - return h->f != 0 && se_putc(b, (FILE *) h->f) != EOF ? t : stdio_maybe_error(stream, lit("writing")); } |