diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-06 14:31:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-06 14:31:49 +0000 |
commit | e8dd0160fa39d450de09febd4bcf0ff4f821a0f0 (patch) | |
tree | 8918b1357792c5919832885f6ba3697a4d36f80a /lisp/international/ccl.el | |
parent | 8d9fbccc36cf7575bd2dcfa44845e34bab0e2c54 (diff) | |
download | emacs-e8dd0160fa39d450de09febd4bcf0ff4f821a0f0.tar.gz |
Doc fixes.
Diffstat (limited to 'lisp/international/ccl.el')
-rw-r--r-- | lisp/international/ccl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/international/ccl.el b/lisp/international/ccl.el index e0b12e35abe..b232ede8426 100644 --- a/lisp/international/ccl.el +++ b/lisp/international/ccl.el @@ -100,7 +100,7 @@ ;; | < | > | == | <= | >= | != | de-sjis | en-sjis ;; ASSIGNMENT_OPERATOR := ;; += | -= | *= | /= | %= | &= | '|=' | ^= | <<= | >>= -;; ARRAY := '[' interger ... ']' +;; ARRAY := '[' integer ... ']' ;;; Code: @@ -332,7 +332,7 @@ ;;;###autoload (defun ccl-compile (ccl-program) - "Return a comiled code of CCL-PROGRAM as a vector of integer." + "Return a compiled code of CCL-PROGRAM as a vector of integer." (if (or (null (consp ccl-program)) (null (integerp (car ccl-program))) (null (listp (car (cdr ccl-program))))) @@ -1321,7 +1321,7 @@ register CCL-PROGRAM by name NAME, and return NAME." ;;;###autoload (defun ccl-execute-with-args (ccl-prog &rest args) "Execute CCL-PROGRAM with registers initialized by the remaining args. -The return value is a vector of resulting CCL registeres." +The return value is a vector of resulting CCL registers." (let ((reg (make-vector 8 0)) (i 0)) (while (and args (< i 8)) |