changeset 25063:7c69e1001e35

(get_next_display_element): Display DEL as `^?'.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 26 Jul 1999 11:50:17 +0000
parents 050561b336aa
children 206f04753cc1
files src/xdisp.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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