diff options
| author | Kenichi Handa | 1997-08-18 11:19:17 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-18 11:19:17 +0000 |
| commit | af4fecb4083fcdda3071d3a1f43d84dc4cf29e64 (patch) | |
| tree | dc92dcdb8b1dc7b6ae1c29c68055ef43b95e5308 /src | |
| parent | f7af6265bf126cc375a72bf7fd920fe7ddf803e2 (diff) | |
| download | emacs-af4fecb4083fcdda3071d3a1f43d84dc4cf29e64.tar.gz emacs-af4fecb4083fcdda3071d3a1f43d84dc4cf29e64.zip | |
(Fchars_in_region): Renamed form Fcount_chars_region.
(syms_of_charset): Define Schars_in_region as a Lisp subroutine
instead of Scount_chars_region.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 4 |
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.") | |||
| 895 | return val; | 895 | return val; |
| 896 | } | 896 | } |
| 897 | 897 | ||
| 898 | DEFUN ("count-chars-region", Fcount_chars_region, Scount_chars_region, 2, 2, 0, | 898 | DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0, |
| 899 | "Return number of characters between BEG and END.\n\ | 899 | "Return number of characters between BEG and END.\n\ |
| 900 | When using multibyte characters, this is not the necessarily same as\n\ | 900 | When using multibyte characters, this is not the necessarily same as\n\ |
| 901 | (- END BEG); that subtraction gives you the number of bytes, which\n\ | 901 | (- END BEG); that subtraction gives you the number of bytes, which\n\ |
| @@ -1554,7 +1554,7 @@ syms_of_charset () | |||
| 1554 | defsubr (&Sstring_width); | 1554 | defsubr (&Sstring_width); |
| 1555 | defsubr (&Schar_direction); | 1555 | defsubr (&Schar_direction); |
| 1556 | defsubr (&Schars_in_string); | 1556 | defsubr (&Schars_in_string); |
| 1557 | defsubr (&Scount_chars_region); | 1557 | defsubr (&Schars_in_region); |
| 1558 | defsubr (&Schar_boundary_p); | 1558 | defsubr (&Schar_boundary_p); |
| 1559 | defsubr (&Sconcat_chars); | 1559 | defsubr (&Sconcat_chars); |
| 1560 | defsubr (&Scmpcharp); | 1560 | defsubr (&Scmpcharp); |