aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-11-06 12:42:06 +0000
committerKenichi Handa2000-11-06 12:42:06 +0000
commit7f341749f74bf03835081007ce7813bda51dc8a3 (patch)
tree756ce0d28bfd470024c0cabcc34afac3a76be590
parent7141ee657b81383b545022b181a8930823ea3a66 (diff)
downloademacs-7f341749f74bf03835081007ce7813bda51dc8a3.tar.gz
emacs-7f341749f74bf03835081007ce7813bda51dc8a3.zip
(decode-char, encode-char): Fix doc-string.
-rw-r--r--lisp/international/mule.el8
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.
293Return nil if such a character is not supported. 293Return nil if such a character is not supported.
294Currently, supported coded character set is `ucs' (ISO/IEC 294Currently, supported coded character set is `ucs' (ISO/IEC
29510646: Universal Multi-Octet Coded Character Set) only. 29510646: 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.
320Return nil if CHAR is not included in CCS. 320Return nil if CHAR is not included in CCS.
321Currently, supported coded character set is `ucs' (ISO/IEC 321Currently, supported coded character set is `ucs' (ISO/IEC
32210646: Universal Multi-Octet Coded Character Set) only. 32210646: Universal Multi-Octet Coded Character Set) only.
323Return a Unicode character code for CHAR. 323
324Charset of CHAR should be one of these: 324CHAR 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
327Otherwise, return nil. 327Otherwise, return nil.