]> git.eshelyaron.com Git - emacs.git/commitdiff
(Character Sets): Document `map-charset-chars'.
authorEli Zaretskii <eliz@gnu.org>
Fri, 5 Dec 2008 16:30:01 +0000 (16:30 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 5 Dec 2008 16:30:01 +0000 (16:30 +0000)
doc/lispref/ChangeLog
doc/lispref/nonascii.texi

index 96118a3afe912a1e6d46ac36432d606f6eda1800..952c2953a60a1b080dbc66ebc84fa897fe8dec0e 100644 (file)
@@ -4,6 +4,7 @@
        paragraph to speak about `undecided'.
        (Character Properties): Don't explain the meaning of each
        property; instead, identify their Unicode Standard names.
+       (Character Sets): Document `map-charset-chars'.
 
 2008-12-02  Glenn Morris  <rgm@gnu.org>
 
index 131b27d030e7116acdf245e6b99802816b2250e9..28b1cf508dbbbfbd0a214f7a60a609bfb9c06a84 100644 (file)
@@ -626,6 +626,23 @@ integer, it is returned as a cons cell @code{(@var{high} . @var{low})}
 that fits the second argument of @code{decode-char} above.  If
 @var{charset} doesn't have a codepoint for @var{char}, the value is
 @code{nil}.
+@end defun
+
+  The following function comes in handy for applying a certain
+function to all or part of the characters in a charset:
+
+@defun map-charset-chars function charset &optional arg from to
+Call @var{function} for characters in @var{charset}.  @var{function}
+is called with two arguments.  The first one is a cons cell
+@code{(@var{from} .  @var{to})}, where @var{from} and @var{to}
+indicate a range of characters contained in charset.  The second
+argument is the optional argument @var{arg}.
+
+By default, the range of codepoints passed to @var{function} includes
+all the characters in @var{charset}, but optional arguments @var{from}
+and @var{to} limit that to the range of characters between these two
+codepoints.  If either of them is @code{nil}, it defaults to the first
+or last codepoint of @var{charset}, respectively.
 @end defun
 
 @node Scanning Charsets