Function: elisp-scope-loop-with-and

elisp-scope-loop-with-and is a byte-compiled function defined in elisp-scope.el.gz.

Signature

(elisp-scope-loop-with-and REST)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elisp-scope.el.gz
(defun elisp-scope-loop-with-and (rest)
  (if (eq (elisp-scope--sym-bare (car rest)) 'and)
      (elisp-scope-loop-with (cadr rest) (cddr rest))
    (elisp-scope-loop rest)))