diff options
| author | Kenichi Handa | 2001-01-12 05:40:00 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-01-12 05:40:00 +0000 |
| commit | 5be68964976171aa88941fe7ded6b7eee52beffe (patch) | |
| tree | 16b1e31f1e6f311c81e6cc5be8194525f5be304a | |
| parent | 18bfd6b5373626b8b35d132ff6b0557f30d83e2d (diff) | |
| download | emacs-5be68964976171aa88941fe7ded6b7eee52beffe.tar.gz emacs-5be68964976171aa88941fe7ded6b7eee52beffe.zip | |
(define-ccl-program): Fix docstring.
| -rw-r--r-- | lisp/international/ccl.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/ccl.el b/lisp/international/ccl.el index e1f0250aa2b..d1e35f1e4b9 100644 --- a/lisp/international/ccl.el +++ b/lisp/international/ccl.el | |||
| @@ -1322,7 +1322,7 @@ READ := ;; Set REG_0 to a byte read from the input text, set REG_1 | |||
| 1322 | ;; multibyte representation, set REG_0 to the charset ID of | 1322 | ;; multibyte representation, set REG_0 to the charset ID of |
| 1323 | ;; the character, set REG_1 to the code point of the | 1323 | ;; the character, set REG_1 to the code point of the |
| 1324 | ;; character. If the dimension of charset is two, set REG_1 | 1324 | ;; character. If the dimension of charset is two, set REG_1 |
| 1325 | ;; to ((CODE0 << 8) | CODE1), where CODE0 is the first code | 1325 | ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code |
| 1326 | ;; point and CODE1 is the second code point. | 1326 | ;; point and CODE1 is the second code point. |
| 1327 | | (read-multibyte-character REG_0 REG_1) | 1327 | | (read-multibyte-character REG_0 REG_1) |
| 1328 | 1328 | ||
| @@ -1351,7 +1351,7 @@ WRITE := | |||
| 1351 | ;; Write a multibyte representation of a character whose | 1351 | ;; Write a multibyte representation of a character whose |
| 1352 | ;; charset ID is REG_0 and code point is REG_1. If the | 1352 | ;; charset ID is REG_0 and code point is REG_1. If the |
| 1353 | ;; dimension of the charset is two, REG_1 should be ((CODE0 << | 1353 | ;; dimension of the charset is two, REG_1 should be ((CODE0 << |
| 1354 | ;; 8) | CODE1), where CODE0 is the first code point and CODE1 | 1354 | ;; 7) | CODE1), where CODE0 is the first code point and CODE1 |
| 1355 | ;; is the second code point of the character. | 1355 | ;; is the second code point of the character. |
| 1356 | | (write-multibyte-character REG_0 REG_1) | 1356 | | (write-multibyte-character REG_0 REG_1) |
| 1357 | 1357 | ||