diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-04 08:34:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-04 08:34:04 -0700 |
commit | 7b226277f9ab1d27c657e80e4a44c43c0bedf002 (patch) | |
tree | 1f971f10d80119d3b8ddc89d7140697cc8cee07c /stream.c | |
parent | c595d3043110cf1820d22e17454e4cf787562894 (diff) | |
download | txr-7b226277f9ab1d27c657e80e4a44c43c0bedf002.tar.gz txr-7b226277f9ab1d27c657e80e4a44c43c0bedf002.tar.bz2 txr-7b226277f9ab1d27c657e80e4a44c43c0bedf002.zip |
* stream.c (indent_mode_put_string): Function removed,
logic hoisted into put_string.
(put_string, put_char): Always count column, indent mode or not.
* tests/009/json.expected: Updated.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 21 |
1 files changed, 4 insertions, 17 deletions
@@ -2559,9 +2559,11 @@ static val put_indent(val stream, struct strm_ops *ops, cnum chars) return t; } -static val indent_mode_put_string(val stream, val string, - struct strm_ops *ops, struct strm_base *s) +val put_string(val string, val stream_in) { + val stream = default_arg(stream_in, std_output); + struct strm_ops *ops = coerce(struct strm_ops *, cobj_ops(stream, stream_s)); + struct strm_base *s = coerce(struct strm_base *, stream->co.handle); cnum col = s->column; const wchar_t *str = c_str(string), *p = str; val ret; @@ -2587,18 +2589,6 @@ static val indent_mode_put_string(val stream, val string, return ret; } -val put_string(val string, val stream_in) -{ - val stream = default_arg(stream_in, std_output); - struct strm_ops *ops = coerce(struct strm_ops *, cobj_ops(stream, stream_s)); - struct strm_base *s = coerce(struct strm_base *, stream->co.handle); - - if (s->indent_mode == indent_off) - return ops->put_string(stream, string); - - return indent_mode_put_string(stream, string, ops, s); -} - val put_char(val ch, val stream_in) { val stream = default_arg(stream_in, std_output); @@ -2606,9 +2596,6 @@ val put_char(val ch, val stream_in) struct strm_base *s = coerce(struct strm_base *, stream->co.handle); wint_t cch = c_chr(ch); - if (s->indent_mode == indent_off) - return ops->put_char(stream, ch); - switch (cch) { case L'\n': if (ops->put_char(stream, ch) && |