From 643044ebfd693e5ca8e16891b8606949161eeb7a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 28 Aug 1998 12:22:39 +0000 Subject: [PATCH] (count_size_as_multibyte): Use macro CHAR_BYTES instead of Fchar_bytes. --- src/insdel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insdel.c b/src/insdel.c index 274318288ee..dc8cd66ee06 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -773,7 +773,7 @@ count_size_as_multibyte (ptr, nbytes) else { c = unibyte_char_to_multibyte (c); - outgoing_nbytes += XINT (Fchar_bytes (make_number (c))); + outgoing_nbytes += CHAR_BYTES (c); } } -- 2.39.2