diff options
author | nicm <nicm> | 2020-05-16 15:35:19 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 15:35:19 +0000 |
commit | 2df75aa11727538451d7402b5ad1579d7493ce4c (patch) | |
tree | 15954a26a1950b43726d56bcbc1441f3fe077dd0 /paste.c | |
parent | 9605b080f6c942ff2e51a2ba538cccc91c91c161 (diff) | |
download | rtmux-2df75aa11727538451d7402b5ad1579d7493ce4c.tar.gz rtmux-2df75aa11727538451d7402b5ad1579d7493ce4c.tar.bz2 rtmux-2df75aa11727538451d7402b5ad1579d7493ce4c.zip |
Use VIS_CSTYLE for paste buffers also.
Diffstat (limited to 'paste.c')
-rw-r--r-- | paste.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ paste_make_sample(struct paste_buffer *pb) { char *buf; size_t len, used; - const int flags = VIS_OCTAL|VIS_TAB|VIS_NL; + const int flags = VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL; const size_t width = 200; len = pb->size; |