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
* Fixed end of lines in the ANSI exporter (CRLF, not LFCR).
tags/v0.99.beta14
Sam Hocevar
sam
18 years ago
parent
0889bf4799
commit
1089986b79
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_ansi.c
+ 1
- 1
cucul/export_ansi.c
View File
@@ -92,7 +92,7 @@ char * cucul_get_ansi(cucul_t *qq, int trailing, int *size)
prevbg = bg;
}
if(!trailing)
cur += sprintf(cur, "\033[0m\
n\
r");
cur += sprintf(cur, "\033[0m\r
\n
");
else
cur += sprintf(cur, "\\033[0m\\n\n");
}
Write
Preview
Loading…
Cancel
Save