This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Do not output \r in the UTF-8 exporter.
tags/v0.99.beta14
Sam Hocevar
sam
18 years ago
parent
f20598339e
commit
5f9d557f2f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
cucul/export.c
+ 1
- 1
cucul/export.c
View File
@@ -259,7 +259,7 @@ static void export_utf8(cucul_canvas_t *cv, cucul_buffer_t *ex)
if(prevfg != 0x10 || prevbg != 0x10)
cur += sprintf(cur, "\033[0m");
cur += sprintf(cur, "\
r\
n");
cur += sprintf(cur, "\n");
}
/* Crop to really used size */
Write
Preview
Loading…
Cancel
Save