# HG changeset patch # User Stefan Monnier # Date 1111686170 0 # Node ID 9c0af190d335a5fa538546481f2cbc373f73c180 # Parent a74509e6fe96ea510d6f989cb42327c06f669a12 (get_next_display_element): Also use `\ ' & `\-' for latin-9. Just prepend a backslash without replacing the NBSP by an SPC. diff -r a74509e6fe96 -r 9c0af190d335 src/xdisp.c --- a/src/xdisp.c Thu Mar 24 17:34:34 2005 +0000 +++ b/src/xdisp.c Thu Mar 24 17:42:50 2005 +0000 @@ -5143,10 +5143,11 @@ 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;