]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
authorKenichi Handa <handa@m17n.org>
Mon, 19 Aug 2002 10:59:04 +0000 (10:59 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 19 Aug 2002 10:59:04 +0000 (10:59 +0000)
src/editfns.c

index 2c4bae4808a86532b398d91efbb591a8c6085452..df23170df283ad3bbe9877957bedc22270b22851 100644 (file)
@@ -3314,7 +3314,7 @@ usage: (format STRING &rest OBJECTS)  */)
 
            thissize = 30;
            if (*format == 'c'
-               && (! SINGLE_BYTE_CHAR_P (XINT (args[n]))
+               && (! ASCII_CHAR_P (XINT (args[n]))
                    || XINT (args[n]) == 0))
              {
                if (! multibyte)