From 04c769c2bd274857c665df68db6e0b173f09e110 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 24 Mar 2005 17:42:50 +0000 Subject: [PATCH] (get_next_display_element): Also use `\ ' & `\-' for latin-9. Just prepend a backslash without replacing the NBSP by an SPC. --- src/xdisp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; -- 2.39.2