diff options
| author | Kenichi Handa | 2002-05-14 07:59:29 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-05-14 07:59:29 +0000 |
| commit | 6abd9323c6c34de7e4be6e0868534357116e925a (patch) | |
| tree | 66d1b784cffa2ac00a988d43ee2f01b860ee7f10 /src | |
| parent | 5170b32939dc97ddd2c349197c5303c05473c294 (diff) | |
| download | emacs-6abd9323c6c34de7e4be6e0868534357116e925a.tar.gz emacs-6abd9323c6c34de7e4be6e0868534357116e925a.zip | |
(Fmap_charset_chars): Fix docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 7 |
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 | ||
| 634 | DEFUN ("map-charset-chars", Fmap_charset_chars, Smap_charset_chars, 2, 3, 0, | 634 | DEFUN ("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. |
| 636 | FUNCTION is called with three arguments; FROM, TO, and the 3rd optional | 636 | FUNCTION is called with an argument RANGE and the 2nd optional |
| 637 | argument ARG. | 637 | argument ARG. |
| 638 | FROM and TO indicates a range of character sequence that are contained | 638 | |
| 639 | in CHARSET. */) | 639 | RANGE is a cons (FROM . TO), where FROM and TO indicates a range of |
| 640 | character 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 | { |