summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1997-08-18 11:19:17 +0000
committerKenichi Handa <handa@m17n.org>1997-08-18 11:19:17 +0000
commit057e3528287acfe96c37d034ce9265f03e74eed4 (patch)
tree76c33ee814f53f93d12c7d2ea9a9ef76f2338e53
parent22fb0ed2921b8c8acfec561d83794355dac97419 (diff)
downloademacs-057e3528287acfe96c37d034ce9265f03e74eed4.tar.gz
(Fchars_in_region): Renamed form Fcount_chars_region.
(syms_of_charset): Define Schars_in_region as a Lisp subroutine instead of Scount_chars_region.
-rw-r--r--src/charset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c
index 905efee017a..94468b55581 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -895,7 +895,7 @@ character.")
return val;
}
-DEFUN ("count-chars-region", Fcount_chars_region, Scount_chars_region, 2, 2, 0,
+DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0,
"Return number of characters between BEG and END.\n\
When using multibyte characters, this is not the necessarily same as\n\
(- END BEG); that subtraction gives you the number of bytes, which\n\
@@ -1554,7 +1554,7 @@ syms_of_charset ()
defsubr (&Sstring_width);
defsubr (&Schar_direction);
defsubr (&Schars_in_string);
- defsubr (&Scount_chars_region);
+ defsubr (&Schars_in_region);
defsubr (&Schar_boundary_p);
defsubr (&Sconcat_chars);
defsubr (&Scmpcharp);