aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-05-14 07:59:29 +0000
committerKenichi Handa2002-05-14 07:59:29 +0000
commit6abd9323c6c34de7e4be6e0868534357116e925a (patch)
tree66d1b784cffa2ac00a988d43ee2f01b860ee7f10 /src
parent5170b32939dc97ddd2c349197c5303c05473c294 (diff)
downloademacs-6abd9323c6c34de7e4be6e0868534357116e925a.tar.gz
emacs-6abd9323c6c34de7e4be6e0868534357116e925a.zip
(Fmap_charset_chars): Fix docstring.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c
index 129d429432a..d3f2ff3e685 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -633,10 +633,11 @@ map_charset_chars (c_function, function, charset_symbol, arg)
633 633
634DEFUN ("map-charset-chars", Fmap_charset_chars, Smap_charset_chars, 2, 3, 0, 634DEFUN ("map-charset-chars", Fmap_charset_chars, Smap_charset_chars, 2, 3, 0,
635 doc: /* Call FUNCTION for each characters in CHARSET. 635 doc: /* Call FUNCTION for each characters in CHARSET.
636FUNCTION is called with three arguments; FROM, TO, and the 3rd optional 636FUNCTION is called with an argument RANGE and the 2nd optional
637argument ARG. 637argument ARG.
638FROM and TO indicates a range of character sequence that are contained 638
639in CHARSET. */) 639RANGE is a cons (FROM . TO), where FROM and TO indicates a range of
640character sequence that are contained in CHARSET. */)
640 (function, charset, arg) 641 (function, charset, arg)
641 Lisp_Object function, charset, arg; 642 Lisp_Object function, charset, arg;
642{ 643{