From: Stefan Monnier Date: Thu, 24 Mar 2005 17:42:50 +0000 (+0000) Subject: (get_next_display_element): Also use `\ ' & `\-' for latin-9. X-Git-Tag: ttn-vms-21-2-B4~1571 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=04c769c2bd274857c665df68db6e0b173f09e110;p=emacs.git (get_next_display_element): Also use `\ ' & `\-' for latin-9. Just prepend a backslash without replacing the NBSP by an SPC. --- diff --git a/src/xdisp.c b/src/xdisp.c index bca4115f4b1..fdaf2bf1a3c 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -5143,10 +5143,11 @@ get_next_display_element (it) it->face_id); } - if (it->c == 0x8a0 || it->c == 0x8ad) + if (it->c == 0x8a0 || it->c == 0x8ad + || it->c == 0xf20 || it->c == 0xf2d) { XSETINT (it->ctl_chars[0], escape_glyph); - g = it->c == 0x8ad ? '-' : ' '; + g = it->c; XSETINT (it->ctl_chars[1], g); ctl_len = 2; goto display_control;