diff options
| author | Eli Zaretskii | 2023-09-01 16:33:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-09-01 16:33:40 +0300 |
| commit | 5cbe96d17f67e58091de1653f409d87bcc2b3e99 (patch) | |
| tree | 630b5b7f7770643362edfdf361459d1a7327d5a7 /src | |
| parent | a219ee8c314506d4105d9767fe7332d3fd8525a5 (diff) | |
| download | emacs-5cbe96d17f67e58091de1653f409d87bcc2b3e99.tar.gz emacs-5cbe96d17f67e58091de1653f409d87bcc2b3e99.zip | |
; Improve documentation of 'char-table-range'
* 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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/chartab.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chartab.c b/src/chartab.c index 6f0bc28f31b..58bb1658504 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -580,7 +580,8 @@ DEFUN ("char-table-range", Fchar_table_range, Schar_table_range, | |||
| 580 | 2, 2, 0, | 580 | 2, 2, 0, |
| 581 | doc: /* Return the value in CHAR-TABLE for a range of characters RANGE. | 581 | doc: /* Return the value in CHAR-TABLE for a range of characters RANGE. |
| 582 | RANGE should be nil (for the default value), | 582 | RANGE should be nil (for the default value), |
| 583 | a cons of character codes (for characters in the range), or a character code. */) | 583 | a cons of character codes (for characters in the range), or a character code. |
| 584 | If RANGE is a cons (FROM . TO), the function returns the value for FROM. */) | ||
| 584 | (Lisp_Object char_table, Lisp_Object range) | 585 | (Lisp_Object char_table, Lisp_Object range) |
| 585 | { | 586 | { |
| 586 | Lisp_Object val; | 587 | Lisp_Object val; |