summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-04 08:34:04 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-04 08:34:04 -0700
commit7b226277f9ab1d27c657e80e4a44c43c0bedf002 (patch)
tree1f971f10d80119d3b8ddc89d7140697cc8cee07c /stream.c
parentc595d3043110cf1820d22e17454e4cf787562894 (diff)
downloadtxr-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.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/stream.c b/stream.c
index 6e85012f..a741676d 100644
--- a/stream.c
+++ b/stream.c
@@ -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) &&