aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love2003-02-04 19:26:38 +0000
committerDave Love2003-02-04 19:26:38 +0000
commit1d839a148603a07aea8dfc25b7e1661d265a6ffb (patch)
tree1f63ac39454e898504c106401e614dc1a1f36904 /lisp
parent5d9c1e7adf1a7092536ee1e276237f732bccf36e (diff)
downloademacs-1d839a148603a07aea8dfc25b7e1661d265a6ffb.tar.gz
emacs-1d839a148603a07aea8dfc25b7e1661d265a6ffb.zip
(charset-iso-final-char)
(define-coding-system): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/international/mule.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index e96fdf248cb..df3455ab4d0 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -329,7 +329,8 @@ DIMENSION defaults to the first dimension."
329 (aref code-space (- (* 2 dimension) 2)))))) 329 (aref code-space (- (* 2 dimension) 2))))))
330 330
331(defun charset-iso-final-char (charset) 331(defun charset-iso-final-char (charset)
332 "Return ISO-2022 final character of CHARSET." 332 "Return ISO-2022 final character of CHARSET.
333Return -1 if charset isn't an ISO 2022 one."
333 (or (plist-get (charset-plist charset) :iso-final-char) 334 (or (plist-get (charset-plist charset) :iso-final-char)
334 -1)) 335 -1))
335 336
@@ -476,7 +477,7 @@ selected. If `:coding-type' is `iso-2022', VALUE may be `iso-2022',
476which indicates that the coding system supports all ISO-2022 based 477which indicates that the coding system supports all ISO-2022 based
477charsets. If `:coding-type' is `emacs-mule', VALUE may be 478charsets. If `:coding-type' is `emacs-mule', VALUE may be
478`emacs-mule', which indicates that the coding system supports all 479`emacs-mule', which indicates that the coding system supports all
479charsets that have `:emacs-mule-id' property. 480charsets that have the `:emacs-mule-id' property.
480 481
481`:ascii-compatible-p' 482`:ascii-compatible-p'
482 483