diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-29 23:02:25 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-29 23:02:25 +0100 |
commit | 414208aab1d7a6ed346a2fb5249d022be5617260 (patch) | |
tree | f4b6a65e55c66843e6ab274dda1d352cb866b44e /window-buffer.c | |
parent | 95d68fcba137cc140d90b65de6bde1f502d3cbc1 (diff) | |
parent | 7dced376737ef685e09fd5a49161ca2bf423e91b (diff) | |
download | rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.tar.gz rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.tar.bz2 rtmux-414208aab1d7a6ed346a2fb5249d022be5617260.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window-buffer.c')
-rw-r--r-- | window-buffer.c | 2 |
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++; |