summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-04 20:28:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-04 20:28:51 -0700
commitbfbad3fd2a3ba5af46e547c5e1f7cb72b25162a8 (patch)
tree9b076c1586076f813fc40518a49127790236519a /stream.c
parent09a267a5b230f3d42aacb00188c3c168bbc4e42a (diff)
downloadtxr-bfbad3fd2a3ba5af46e547c5e1f7cb72b25162a8.tar.gz
txr-bfbad3fd2a3ba5af46e547c5e1f7cb72b25162a8.tar.bz2
txr-bfbad3fd2a3ba5af46e547c5e1f7cb72b25162a8.zip
* stream.c (put_string, put_char): Do not put out the indentation
immediately after outputting a newline. Rather, delay the output of the indentation until some output occurs at column zero.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/stream.c b/stream.c
index 7d425d38..19c79619 100644
--- a/stream.c
+++ b/stream.c
@@ -2544,9 +2544,13 @@ val put_string(val string, val stream_in)
col = 0;
break;
case '\t':
+ if (s->indent_mode != indent_off && col == 0)
+ col = s->indent_chars;
col = (col + 1) | 7;
break;
default:
+ if (s->indent_mode != indent_off && col == 0)
+ col = s->indent_chars;
if (iswprint(*p))
col++;
break;
@@ -2568,14 +2572,21 @@ val put_char(val ch, val stream_in)
switch (cch) {
case L'\n':
ops->put_char(stream, ch);
- put_indent(stream, ops, s->indent_chars);
- s->column = s->indent_chars;
+ s->column = 0;
break;
case L'\t':
+ if (s->column == 0 && s->indent_mode != indent_off) {
+ put_indent(stream, ops, s->indent_chars);
+ s->column = s->indent_chars;
+ }
ops->put_char(stream, ch);
s->column = (s->column + 1) | 7;
break;
default:
+ if (s->column == 0 && s->indent_mode != indent_off) {
+ put_indent(stream, ops, s->indent_chars);
+ s->column = s->indent_chars;
+ }
ops->put_char(stream, ch);
if (iswprint(cch))
s->column++;