]> git.eshelyaron.com Git - emacs.git/commitdiff
(define-ccl-program): Fix docstring.
authorKenichi Handa <handa@m17n.org>
Fri, 12 Jan 2001 05:40:00 +0000 (05:40 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 12 Jan 2001 05:40:00 +0000 (05:40 +0000)
lisp/international/ccl.el

index e1f0250aa2b17594cce8749a443e495b10903705..d1e35f1e4b9472cb3919288409b754f21491a688 100644 (file)
@@ -1322,7 +1322,7 @@ READ := ;; Set REG_0 to a byte read from the input text, set REG_1
        ;; multibyte representation, set REG_0 to the charset ID of
        ;; the character, set REG_1 to the code point of the
        ;; character.  If the dimension of charset is two, set REG_1
-       ;; to ((CODE0 << 8) | CODE1), where CODE0 is the first code
+       ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code
        ;; point and CODE1 is the second code point.
        | (read-multibyte-character REG_0 REG_1)
 
@@ -1351,7 +1351,7 @@ WRITE :=
        ;; Write a multibyte representation of a character whose
        ;; charset ID is REG_0 and code point is REG_1.  If the
        ;; dimension of the charset is two, REG_1 should be ((CODE0 <<
-       ;; 8) | CODE1), where CODE0 is the first code point and CODE1
+       ;; 7) | CODE1), where CODE0 is the first code point and CODE1
        ;; is the second code point of the character.
        | (write-multibyte-character REG_0 REG_1)