diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-01 17:59:13 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-01 17:59:13 +0100 |
commit | bf84359dfb6ab241fc4e586fcbe8070a838f1f37 (patch) | |
tree | bd3d00d647e008fdf97833e13b35fd2fea4a9ae8 /paste.c | |
parent | 1fa9bcc18357af43954ddb64a51173d99d83dd54 (diff) | |
download | rtmux-bf84359dfb6ab241fc4e586fcbe8070a838f1f37.tar.gz rtmux-bf84359dfb6ab241fc4e586fcbe8070a838f1f37.tar.bz2 rtmux-bf84359dfb6ab241fc4e586fcbe8070a838f1f37.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
@@ -311,7 +311,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; |