aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-08-19 10:59:04 +0000
committerKenichi Handa2002-08-19 10:59:04 +0000
commit5a7128a6e8c5945f36ee26fe8b2a3bada02892fc (patch)
tree8d000d813f8b405fe688d1b315c40ea7efda5be1 /src
parentb982c76070397abb984106f780845396f6867c5f (diff)
downloademacs-5a7128a6e8c5945f36ee26fe8b2a3bada02892fc.tar.gz
emacs-5a7128a6e8c5945f36ee26fe8b2a3bada02892fc.zip
(Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
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) */)
3314 3314
3315 thissize = 30; 3315 thissize = 30;
3316 if (*format == 'c' 3316 if (*format == 'c'
3317 && (! SINGLE_BYTE_CHAR_P (XINT (args[n])) 3317 && (! ASCII_CHAR_P (XINT (args[n]))
3318 || XINT (args[n]) == 0)) 3318 || XINT (args[n]) == 0))
3319 { 3319 {
3320 if (! multibyte) 3320 if (! multibyte)