From: Kenichi Handa Date: Mon, 19 Aug 2002 10:59:04 +0000 (+0000) Subject: (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~428 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a7128a6e8c5945f36ee26fe8b2a3bada02892fc;p=emacs.git (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P. --- diff --git a/src/editfns.c b/src/editfns.c index 2c4bae4808a..df23170df28 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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)