diff options
| author | Kenichi Handa | 2000-11-06 12:42:06 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-11-06 12:42:06 +0000 |
| commit | 7f341749f74bf03835081007ce7813bda51dc8a3 (patch) | |
| tree | 756ce0d28bfd470024c0cabcc34afac3a76be590 | |
| parent | 7141ee657b81383b545022b181a8930823ea3a66 (diff) | |
| download | emacs-7f341749f74bf03835081007ce7813bda51dc8a3.tar.gz emacs-7f341749f74bf03835081007ce7813bda51dc8a3.zip | |
(decode-char, encode-char): Fix doc-string.
| -rw-r--r-- | lisp/international/mule.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 922a9cf7d95..5255942da7d 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -289,7 +289,7 @@ See also the documentation of make-char." | |||
| 289 | (not (eq (car l) 'composition)))))) | 289 | (not (eq (car l) 'composition)))))) |
| 290 | 290 | ||
| 291 | (defun decode-char (ccs code-point &optional restriction) | 291 | (defun decode-char (ccs code-point &optional restriction) |
| 292 | "Return a character specified by coded character set CCS and CODE-POINT in it. | 292 | "Return character specified by coded character set CCS and CODE-POINT in it. |
| 293 | Return nil if such a character is not supported. | 293 | Return nil if such a character is not supported. |
| 294 | Currently, supported coded character set is `ucs' (ISO/IEC | 294 | Currently, supported coded character set is `ucs' (ISO/IEC |
| 295 | 10646: Universal Multi-Octet Coded Character Set) only. | 295 | 10646: Universal Multi-Octet Coded Character Set) only. |
| @@ -316,12 +316,12 @@ and CODE-POINT to a chracter. Currently not supported and just ignored." | |||
| 316 | )))) | 316 | )))) |
| 317 | 317 | ||
| 318 | (defun encode-char (char ccs &optional restriction) | 318 | (defun encode-char (char ccs &optional restriction) |
| 319 | "Return a code-point in coded character set CCS that corresponds to CHAR. | 319 | "Return code-point in coded character set CCS that corresponds to CHAR. |
| 320 | Return nil if CHAR is not included in CCS. | 320 | Return nil if CHAR is not included in CCS. |
| 321 | Currently, supported coded character set is `ucs' (ISO/IEC | 321 | Currently, supported coded character set is `ucs' (ISO/IEC |
| 322 | 10646: Universal Multi-Octet Coded Character Set) only. | 322 | 10646: Universal Multi-Octet Coded Character Set) only. |
| 323 | Return a Unicode character code for CHAR. | 323 | |
| 324 | Charset of CHAR should be one of these: | 324 | CHAR should be in one of these charsets: |
| 325 | ascii, latin-iso8859-1, mule-unicode-0100-24ff, mule-unicode-2500-33ff, | 325 | ascii, latin-iso8859-1, mule-unicode-0100-24ff, mule-unicode-2500-33ff, |
| 326 | mule-unicode-e000-ffff | 326 | mule-unicode-e000-ffff |
| 327 | Otherwise, return nil. | 327 | Otherwise, return nil. |