Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
cacalabs
/
libcaca
réplica de
https://github.com/cacalabs/libcaca.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
7
Wiki
Actividad
Explorar el Código
* Add linebreaks to the ANSI exporter for better readability, and use
the save/load cursor position trick to ignore them.
tags/v0.99.beta14
Sam Hocevar
sam
hace 18 años
padre
5612b86ce6
commit
ca5c87ae1b
Se han
modificado 1 ficheros
con
5 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+5
-1
cucul/export.c
+ 5
- 1
cucul/export.c
Ver fichero
@@ -319,7 +319,11 @@ static void export_ansi(cucul_canvas_t *cv, cucul_buffer_t *ex)
prevbg = bg;
}
if(cv->width != 80)
if(cv->width == 80)
{
cur += sprintf(cur, "\033[s\n\033[u");
}
else
{
cur += sprintf(cur, "\033[0m\r\n");
prevfg = -1;
Escribir
Vista previa
Cargando…
Cancelar
Guardar