diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-10-24 23:01:22 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-10-25 00:03:17 +0200 |
commit | 98a5fcaac2ee51ff3966cd1956c8bcbca7267033 (patch) | |
tree | 9aeaf7e6cbc11f86db40d05d846bcc633fc7868a | |
parent | a49113ae68a82cf266ab465c0559ef7867467bdb (diff) | |
download | neetdraw-98a5fcaac2ee51ff3966cd1956c8bcbca7267033.tar.gz neetdraw-98a5fcaac2ee51ff3966cd1956c8bcbca7267033.tar.xz neetdraw-98a5fcaac2ee51ff3966cd1956c8bcbca7267033.zip |
Fix the ANSI SGR export
-rw-r--r-- | autistdraw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autistdraw.c b/autistdraw.c index 4f1b6e4..191570a 100644 --- a/autistdraw.c +++ b/autistdraw.c @@ -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); } |