Changes to qemacs/qe.c
Charlie Gordon <[email protected]>
| Newsgroups | gmane.editors.qemacs.devel |
|---|---|
| Message-ID | <[email protected]> |
Index: qemacs/qe.c
diff -u qemacs/qe.c:1.17 qemacs/qe.c:1.18
--- qemacs/qe.c:1.17 Mon May 9 03:19:36 2005
+++ qemacs/qe.c Mon May 9 03:32:19 2005
@@ -2898,8 +2898,7 @@
} else if (c >= 0x10000) {
/* currently, we cannot display these chars */
display_printf(ds, offset0, offset, "\\U%08x", c);
- } else if ((c >= 128 && c < 128 + 32) ||
- (s->screen->charset != &charset_utf8 && c >= 256)) {
+ } else if (c >= 256 && s->screen->charset != &charset_utf8) {
display_printf(ds, offset0, offset, "\\u%04x", c);
} else {
if (char_index < colored_nb_chars)