# HG changeset patch # User Gerd Moellmann # Date 932989817 0 # Node ID 7c69e1001e350ff23d35b49846c17ebe7fb8ab42 # Parent 050561b336aa6599356e9bd87918c04d24830909 (get_next_display_element): Display DEL as `^?'. diff -r 050561b336aa -r 7c69e1001e35 src/xdisp.c --- a/src/xdisp.c Mon Jul 26 11:49:43 1999 +0000 +++ b/src/xdisp.c Mon Jul 26 11:50:17 1999 +0000 @@ -3282,7 +3282,7 @@ || (it->c != '\n' && it->c != '\t' && it->c != '\r'))) - || (it->c >= 128 + || (it->c >= 127 && it->len == 1)) { /* IT->c is a control character which must be displayed @@ -3292,7 +3292,7 @@ display. Then, set IT->dpvec to these glyphs. */ GLYPH g; - if (it->c < ' ' && it->ctl_arrow_p) + if (it->c < 128 && it->ctl_arrow_p) { /* Set IT->ctl_chars[0] to the glyph for `^'. */ if (it->dp