Browse Source

* Do not output \r in the UTF-8 exporter.

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

+ 1
- 1
cucul/export.c View File

@@ -259,7 +259,7 @@ static void export_utf8(cucul_canvas_t *cv, cucul_buffer_t *ex)
if(prevfg != 0x10 || prevbg != 0x10)
cur += sprintf(cur, "\033[0m");

cur += sprintf(cur, "\r\n");
cur += sprintf(cur, "\n");
}

/* Crop to really used size */


Loading…
Cancel
Save