+2014-05-14 Benno Schulenberg <bensberg@justemail.net>
+ * src/winio.c (edit_draw): Poke a non-breaking space into the last
+ column of every line, to startle the terminal into handling wide,
+ two-column characters properly. This fixes Savannah bug #31743.
+
2014-05-13 Benno Schulenberg <bensberg@justemail.net>
* src/text.c (do_linter): Make an error message somewhat clearer.
* src/rcfile.c (parse_binding): Improve another error message.
/* Just paint the string in any case (we'll add color or reverse on
* just the text that needs it). */
mvwaddstr(edit, line, 0, converted);
+#ifdef ENABLE_UTF8
+ if (using_utf8())
+ /* Tickle the terminal into displaying two-column characters properly. */
+ mvwaddstr(edit, line, COLS - 1, "\xC2\xA0\x00");
+#endif
#ifndef DISABLE_COLOR
/* If color syntaxes are available and turned on, we need to display