diff options
| author | Helmut Eller | 2026-04-04 20:59:46 +0200 |
|---|---|---|
| committer | Helmut Eller | 2026-04-04 20:59:46 +0200 |
| commit | 6eec001187e8551f32b6498e6dc60cdc58c2e515 (patch) | |
| tree | 13233de9f0a05ef86a51500e8b1870b75ff20c81 /src/charset.c | |
| parent | e4ea27119e79012f9d651cb61d1115589d91ef39 (diff) | |
| parent | 01a9d78a7e4c7d7fa5b799e4fdc2caf77a012734 (diff) | |
| download | emacs-feature/igc3.tar.gz emacs-feature/igc3.zip | |
Merge branch 'master' into feature/igc3feature/igc3
Diffstat (limited to 'src/charset.c')
| -rw-r--r-- | src/charset.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c index 041f350cf8e..524966d5fbc 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -799,7 +799,7 @@ Optional 4th and 5th arguments FROM-CODE and TO-CODE specify the | |||
| 799 | range of code points (in CHARSET) of target characters on which to | 799 | range of code points (in CHARSET) of target characters on which to |
| 800 | map the FUNCTION. Note that these are not character codes, but code | 800 | map the FUNCTION. Note that these are not character codes, but code |
| 801 | points of CHARSET; for the difference see `decode-char' and | 801 | points of CHARSET; for the difference see `decode-char' and |
| 802 | `list-charset-chars'. If FROM-CODE is nil or imitted, it stands for | 802 | `list-charset-chars'. If FROM-CODE is nil or omitted, it stands for |
| 803 | the first code point of CHARSET; if TO-CODE is nil or omitted, it | 803 | the first code point of CHARSET; if TO-CODE is nil or omitted, it |
| 804 | stands for the last code point of CHARSET. | 804 | stands for the last code point of CHARSET. |
| 805 | 805 | ||
| @@ -840,7 +840,7 @@ TO-CODE, which are CHARSET code points. */) | |||
| 840 | /* Define a charset according to the arguments. The Nth argument is | 840 | /* Define a charset according to the arguments. The Nth argument is |
| 841 | the Nth attribute of the charset (the last attribute `charset-id' | 841 | the Nth attribute of the charset (the last attribute `charset-id' |
| 842 | is not included). See the docstring of `define-charset' for the | 842 | is not included). See the docstring of `define-charset' for the |
| 843 | detail. */ | 843 | details. */ |
| 844 | 844 | ||
| 845 | DEFUN ("define-charset-internal", Fdefine_charset_internal, | 845 | DEFUN ("define-charset-internal", Fdefine_charset_internal, |
| 846 | Sdefine_charset_internal, charset_arg_max, MANY, 0, | 846 | Sdefine_charset_internal, charset_arg_max, MANY, 0, |
| @@ -1530,7 +1530,7 @@ BEG and END are buffer positions. | |||
| 1530 | Optional arg TABLE if non-nil is a translation table to look up. | 1530 | Optional arg TABLE if non-nil is a translation table to look up. |
| 1531 | 1531 | ||
| 1532 | If the current buffer is unibyte, the returned list may contain | 1532 | If the current buffer is unibyte, the returned list may contain |
| 1533 | only `ascii', `eight-bit-control', and `eight-bit-graphic'. */) | 1533 | only `ascii' and `eight-bit'. */) |
| 1534 | (Lisp_Object beg, Lisp_Object end, Lisp_Object table) | 1534 | (Lisp_Object beg, Lisp_Object end, Lisp_Object table) |
| 1535 | { | 1535 | { |
| 1536 | Lisp_Object charsets; | 1536 | Lisp_Object charsets; |
| @@ -1581,7 +1581,7 @@ DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string, | |||
| 1581 | Optional arg TABLE if non-nil is a translation table to look up. | 1581 | Optional arg TABLE if non-nil is a translation table to look up. |
| 1582 | 1582 | ||
| 1583 | If STR is unibyte, the returned list may contain | 1583 | If STR is unibyte, the returned list may contain |
| 1584 | only `ascii', `eight-bit-control', and `eight-bit-graphic'. */) | 1584 | only `ascii' and `eight-bit'. */) |
| 1585 | (Lisp_Object str, Lisp_Object table) | 1585 | (Lisp_Object str, Lisp_Object table) |
| 1586 | { | 1586 | { |
| 1587 | CHECK_STRING (str); | 1587 | CHECK_STRING (str); |
| @@ -2036,7 +2036,7 @@ ASCII characters are an exception: for them, this function always | |||
| 2036 | returns `ascii'. | 2036 | returns `ascii'. |
| 2037 | If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets | 2037 | If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets |
| 2038 | from which to find the charset. It may also be a coding system. In | 2038 | from which to find the charset. It may also be a coding system. In |
| 2039 | that case, find the charset from what supported by that coding system. */) | 2039 | that case, find the charset in those supported by that coding system. */) |
| 2040 | (Lisp_Object ch, Lisp_Object restriction) | 2040 | (Lisp_Object ch, Lisp_Object restriction) |
| 2041 | { | 2041 | { |
| 2042 | struct charset *charset; | 2042 | struct charset *charset; |