Browse Source

* Fixed end of lines in the ANSI exporter (CRLF, not LFCR).

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
1089986b79
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cucul/export_ansi.c

+ 1
- 1
cucul/export_ansi.c View File

@@ -92,7 +92,7 @@ char * cucul_get_ansi(cucul_t *qq, int trailing, int *size)
prevbg = bg;
}
if(!trailing)
cur += sprintf(cur, "\033[0m\n\r");
cur += sprintf(cur, "\033[0m\r\n");
else
cur += sprintf(cur, "\\033[0m\\n\n");
}


Loading…
Cancel
Save