aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorHelmut Eller2026-04-04 20:59:46 +0200
committerHelmut Eller2026-04-04 20:59:46 +0200
commit6eec001187e8551f32b6498e6dc60cdc58c2e515 (patch)
tree13233de9f0a05ef86a51500e8b1870b75ff20c81 /src/charset.c
parente4ea27119e79012f9d651cb61d1115589d91ef39 (diff)
parent01a9d78a7e4c7d7fa5b799e4fdc2caf77a012734 (diff)
downloademacs-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.c10
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
799range of code points (in CHARSET) of target characters on which to 799range of code points (in CHARSET) of target characters on which to
800map the FUNCTION. Note that these are not character codes, but code 800map the FUNCTION. Note that these are not character codes, but code
801points of CHARSET; for the difference see `decode-char' and 801points 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
803the first code point of CHARSET; if TO-CODE is nil or omitted, it 803the first code point of CHARSET; if TO-CODE is nil or omitted, it
804stands for the last code point of CHARSET. 804stands 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
845DEFUN ("define-charset-internal", Fdefine_charset_internal, 845DEFUN ("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.
1530Optional arg TABLE if non-nil is a translation table to look up. 1530Optional arg TABLE if non-nil is a translation table to look up.
1531 1531
1532If the current buffer is unibyte, the returned list may contain 1532If the current buffer is unibyte, the returned list may contain
1533only `ascii', `eight-bit-control', and `eight-bit-graphic'. */) 1533only `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,
1581Optional arg TABLE if non-nil is a translation table to look up. 1581Optional arg TABLE if non-nil is a translation table to look up.
1582 1582
1583If STR is unibyte, the returned list may contain 1583If STR is unibyte, the returned list may contain
1584only `ascii', `eight-bit-control', and `eight-bit-graphic'. */) 1584only `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
2036returns `ascii'. 2036returns `ascii'.
2037If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets 2037If optional 2nd arg RESTRICTION is non-nil, it is a list of charsets
2038from which to find the charset. It may also be a coding system. In 2038from which to find the charset. It may also be a coding system. In
2039that case, find the charset from what supported by that coding system. */) 2039that 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;