]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_next_display_element): Don't display unibyte 8-bit
authorKenichi Handa <handa@m17n.org>
Tue, 20 Aug 2002 11:13:34 +0000 (11:13 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 20 Aug 2002 11:13:34 +0000 (11:13 +0000)
characters by octal form.

src/xdisp.c

index c68cfe014dd1a55a2905c97028967d729f560273..e5162702eb5f10545ce4c5b9e2b858084e9dc58d 100644 (file)
@@ -4232,9 +4232,9 @@ get_next_display_element (it)
          else if ((it->c < ' '
                    && (it->area != TEXT_AREA
                        || (it->c != '\n' && it->c != '\t')))
-                  || (it->multibyte_p ? CHAR_BYTE8_P (it->c) : it->c >= 127)
                   || (it->c != '\n' && it->c != '\t'
-                      && !CHAR_PRINTABLE_P (it->c)))
+                      && (it->multibyte_p ? !CHAR_PRINTABLE_P (it->c)
+                          : it->c == 127)))
            {
              /* IT->c is a control character which must be displayed
                 either as '\003' or as `^C' where the '\\' and '^'