]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve documentation of 'char-table-range'
authorEli Zaretskii <eliz@gnu.org>
Fri, 1 Sep 2023 13:33:40 +0000 (16:33 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Sep 2023 13:33:40 +0000 (16:33 +0300)
* doc/lispref/sequences.texi (Char-Tables):
* src/chartab.c (Fchar_table_range): Clarify what
'char-table-range' returns for an argument that is a cons cell.

doc/lispref/sequences.texi
src/chartab.c

index dd5b723b4797517e10907617bed9514f417d880d..c9c6bb31350fe0e4909df55184b90576f56aadbb 100644 (file)
@@ -1645,7 +1645,8 @@ Refers to the element for character @var{char}
 
 @item @code{(@var{from} . @var{to})}
 A cons cell refers to all the characters in the inclusive range
-@samp{[@var{from}..@var{to}]}.
+@samp{[@var{from}..@var{to}]}.  In this case, the function returns the
+value for the character specified by @var{from}.
 @end table
 @end defun
 
index 6f0bc28f31b105b609e2eea2794f285af35c017d..58bb1658504bf676e41f5118debb6871380f1af9 100644 (file)
@@ -580,7 +580,8 @@ DEFUN ("char-table-range", Fchar_table_range, Schar_table_range,
        2, 2, 0,
        doc: /* Return the value in CHAR-TABLE for a range of characters RANGE.
 RANGE should be nil (for the default value),
-a cons of character codes (for characters in the range), or a character code.  */)
+a cons of character codes (for characters in the range), or a character code.
+If RANGE is a cons (FROM . TO), the function returns the value for FROM.  */)
   (Lisp_Object char_table, Lisp_Object range)
 {
   Lisp_Object val;