summaryrefslogtreecommitdiffstats
path: root/window-buffer.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-05-29 23:02:25 +0100
committerThomas Adam <thomas@xteddy.org>2019-05-29 23:02:25 +0100
commit414208aab1d7a6ed346a2fb5249d022be5617260 (patch)
treef4b6a65e55c66843e6ab274dda1d352cb866b44e /window-buffer.c
parent95d68fcba137cc140d90b65de6bde1f502d3cbc1 (diff)
parent7dced376737ef685e09fd5a49161ca2bf423e91b (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'window-buffer.c')
-rw-r--r--window-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window-buffer.c b/window-buffer.c
index d65916b5..224dfedb 100644
--- a/window-buffer.c
+++ b/window-buffer.c
@@ -245,7 +245,7 @@ window_buffer_draw(__unused void *modedata, void *itemdata,
at = 0;
while (end != pdata + psize && *end != '\n') {
if ((sizeof line) - at > 5) {
- cp = vis(line + at, *end, VIS_TAB|VIS_OCTAL, 0);
+ cp = vis(line + at, *end, VIS_OCTAL|VIS_TAB, 0);
at = cp - line;
}
end++;