aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-08-28 12:22:39 +0000
committerKenichi Handa1998-08-28 12:22:39 +0000
commit643044ebfd693e5ca8e16891b8606949161eeb7a (patch)
treeb1784317d19ac3a5b36e7b40fed665ccf7ac3880 /src
parentfcf9683ed539fe4ecd926349a1cae3dc84378afa (diff)
downloademacs-643044ebfd693e5ca8e16891b8606949161eeb7a.tar.gz
emacs-643044ebfd693e5ca8e16891b8606949161eeb7a.zip
(count_size_as_multibyte): Use macro CHAR_BYTES instead of Fchar_bytes.
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c2
1 files changed, 1 insertions, 1 deletions
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)
773 else 773 else
774 { 774 {
775 c = unibyte_char_to_multibyte (c); 775 c = unibyte_char_to_multibyte (c);
776 outgoing_nbytes += XINT (Fchar_bytes (make_number (c))); 776 outgoing_nbytes += CHAR_BYTES (c);
777 } 777 }
778 } 778 }
779 779