diff options
| author | Juanma Barranquero | 2008-05-23 10:13:25 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-05-23 10:13:25 +0000 |
| commit | d0cf2d48dc0327eb9e8f0633d5482354911b5288 (patch) | |
| tree | e73c8f121e0478e1a5af3656e65c0e848233b311 /src | |
| parent | e71508461166217794b1f1489ff244acecc7769b (diff) | |
| download | emacs-d0cf2d48dc0327eb9e8f0633d5482354911b5288.tar.gz emacs-d0cf2d48dc0327eb9e8f0633d5482354911b5288.zip | |
(Fencode_char, Fsplit_char): Doc fixes.
(Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
Fix typos in docstrings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/charset.c b/src/charset.c index 55ca20875f1..e0bddf4eebd 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -1042,7 +1042,7 @@ usage: (define-charset-internal ...) */) | |||
| 1042 | else if (ISO_CHARSET_TABLE (2, 0, 'B') == id) | 1042 | else if (ISO_CHARSET_TABLE (2, 0, 'B') == id) |
| 1043 | charset_jisx0208 = id; | 1043 | charset_jisx0208 = id; |
| 1044 | } | 1044 | } |
| 1045 | 1045 | ||
| 1046 | if (charset.emacs_mule_id >= 0) | 1046 | if (charset.emacs_mule_id >= 0) |
| 1047 | { | 1047 | { |
| 1048 | emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id); | 1048 | emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id); |
| @@ -1257,7 +1257,7 @@ Optional third argument DEUNIFY, if non-nil, means to de-unify CHARSET. */) | |||
| 1257 | DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, | 1257 | DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, |
| 1258 | Sget_unused_iso_final_char, 2, 2, 0, | 1258 | Sget_unused_iso_final_char, 2, 2, 0, |
| 1259 | doc: /* | 1259 | doc: /* |
| 1260 | Return an unused ISO final char for a charset of DIMENISION and CHARS. | 1260 | Return an unused ISO final char for a charset of DIMENSION and CHARS. |
| 1261 | DIMENSION is the number of bytes to represent a character: 1 or 2. | 1261 | DIMENSION is the number of bytes to represent a character: 1 or 2. |
| 1262 | CHARS is the number of characters in a dimension: 94 or 96. | 1262 | CHARS is the number of characters in a dimension: 94 or 96. |
| 1263 | 1263 | ||
| @@ -1669,7 +1669,7 @@ Return nil if CODE-POINT is not valid in CHARSET. | |||
| 1669 | CODE-POINT may be a cons (HIGHER-16-BIT-VALUE . LOWER-16-BIT-VALUE). | 1669 | CODE-POINT may be a cons (HIGHER-16-BIT-VALUE . LOWER-16-BIT-VALUE). |
| 1670 | 1670 | ||
| 1671 | Optional argument RESTRICTION specifies a way to map the pair of CCS | 1671 | Optional argument RESTRICTION specifies a way to map the pair of CCS |
| 1672 | and CODE-POINT to a chracter. Currently not supported and just ignored. */) | 1672 | and CODE-POINT to a character. Currently not supported and just ignored. */) |
| 1673 | (charset, code_point, restriction) | 1673 | (charset, code_point, restriction) |
| 1674 | Lisp_Object charset, code_point, restriction; | 1674 | Lisp_Object charset, code_point, restriction; |
| 1675 | { | 1675 | { |
| @@ -1699,7 +1699,7 @@ DEFUN ("encode-char", Fencode_char, Sencode_char, 2, 3, 0, | |||
| 1699 | doc: /* Encode the character CH into a code-point of CHARSET. | 1699 | doc: /* Encode the character CH into a code-point of CHARSET. |
| 1700 | Return nil if CHARSET doesn't include CH. | 1700 | Return nil if CHARSET doesn't include CH. |
| 1701 | 1701 | ||
| 1702 | Optional argument RESTRICTION specifies a way to map CHAR to a | 1702 | Optional argument RESTRICTION specifies a way to map CH to a |
| 1703 | code-point in CCS. Currently not supported and just ignored. */) | 1703 | code-point in CCS. Currently not supported and just ignored. */) |
| 1704 | (ch, charset, restriction) | 1704 | (ch, charset, restriction) |
| 1705 | Lisp_Object ch, charset, restriction; | 1705 | Lisp_Object ch, charset, restriction; |
| @@ -1835,10 +1835,10 @@ char_charset (c, charset_list, code_return) | |||
| 1835 | 1835 | ||
| 1836 | DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0, | 1836 | DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0, |
| 1837 | doc: | 1837 | doc: |
| 1838 | /*Return list of charset and one to four position-codes of CHAR. | 1838 | /*Return list of charset and one to four position-codes of CH. |
| 1839 | The charset is decided by the current priority order of charsets. | 1839 | The charset is decided by the current priority order of charsets. |
| 1840 | A position-code is a byte value of each dimension of the code-point of | 1840 | A position-code is a byte value of each dimension of the code-point of |
| 1841 | CHAR in the charset. */) | 1841 | CH in the charset. */) |
| 1842 | (ch) | 1842 | (ch) |
| 1843 | Lisp_Object ch; | 1843 | Lisp_Object ch; |
| 1844 | { | 1844 | { |
| @@ -1903,7 +1903,7 @@ Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR. | |||
| 1903 | 1903 | ||
| 1904 | ISO 2022's designation sequence (escape sequence) distinguishes charsets | 1904 | ISO 2022's designation sequence (escape sequence) distinguishes charsets |
| 1905 | by their DIMENSION, CHARS, and FINAL-CHAR, | 1905 | by their DIMENSION, CHARS, and FINAL-CHAR, |
| 1906 | where as Emacs distinguishes them by charset symbol. | 1906 | whereas Emacs distinguishes them by charset symbol. |
| 1907 | See the documentation of the function `charset-info' for the meanings of | 1907 | See the documentation of the function `charset-info' for the meanings of |
| 1908 | DIMENSION, CHARS, and FINAL-CHAR. */) | 1908 | DIMENSION, CHARS, and FINAL-CHAR. */) |
| 1909 | (dimension, chars, final_char) | 1909 | (dimension, chars, final_char) |