Fix the ANSI SGR export

This commit is contained in:
Přemysl Eric Janouch 2014-10-24 23:01:22 +02:00
parent a49113ae68
commit 98a5fcaac2
1 changed files with 3 additions and 0 deletions

View File

@ -382,6 +382,9 @@ export_ansi (app_context_t *app)
color = new_color;
fputc (' ', fp);
}
// We need to reset the attributes
fputs (color_to_ansi (0), fp);
fputc ('\n', fp);
}