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
codec: fix \t handling in the text importer.
tags/v0.99.beta19
Sam Hocevar
sam
11 years ago
parent
237f946a2e
commit
298edbc8bd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
caca/codec/text.c
+ 1
- 1
caca/codec/text.c
View File
@@ -148,7 +148,7 @@ ssize_t _import_ansi(caca_canvas_t *cv, void const *data, size_t size, int utf8)
else if(buffer[i] == '\t')
{
x = (x +
7
) & ~7;
x = (x +
8
) & ~7;
}
else if(buffer[i] == '\x08')
Write
Preview
Loading…
Cancel
Save