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
* Print '?' for Unicode characters in the ANSI export. We'll decide later
whether we want plain ASCII, UTF-8, or CP437.
tags/v0.99.beta14
Sam Hocevar
sam
18 years ago
parent
65f76ab682
commit
43e1514520
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
@@ -222,7 +222,7 @@ static void export_ansi(cucul_canvas_t *cv, cucul_buffer_t *ex)
fg - 8, bg - 8, fg - 8, bg - 8);
}
*cur++ = ch & 0x7f;
*cur++ =
(
ch
>= 0x20 &
&
ch <
0x7f
) ? ch : '?'
;
prevfg = fg;
prevbg = bg;
Write
Preview
Loading…
Cancel
Save