Explorar el Código

codec: fix \t handling in the text importer.

tags/v0.99.beta19
Sam Hocevar sam hace 12 años
padre
commit
298edbc8bd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      caca/codec/text.c

+ 1
- 1
caca/codec/text.c Ver fichero

@@ -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')


Cargando…
Cancelar
Guardar