Function: cl--expr-depends-p

cl--expr-depends-p is a byte-compiled function defined in cl-macs.el.gz.

Signature

(cl--expr-depends-p X Y)

Documentation

Check whether X may depend on any of the symbols in Y.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-macs.el.gz
(defun cl--expr-depends-p (x y)
  "Check whether X may depend on any of the symbols in Y."
  (and (not (macroexp-const-p x))
       (or (not (cl--safe-expr-p x)) (cl--expr-contains-any x y))))