Function: ccl-compile-branch

ccl-compile-branch is a byte-compiled function defined in ccl.el.gz.

Signature

(ccl-compile-branch CMD)

Documentation

Compile BRANCH statement.

Source Code

;; Defined in /usr/src/emacs/lisp/international/ccl.el.gz
(defun ccl-compile-branch (cmd)
  "Compile BRANCH statement."
  (if (< (length cmd) 3)
      (error "CCL: Invalid number of arguments: %s" cmd))
  (ccl-compile-branch-blocks 'branch
			     (ccl-compile-branch-expression (nth 1 cmd) cmd)
			     (cdr (cdr cmd))))