Function: elisp-scope--analyze-with-suppressed-warnings

elisp-scope--analyze-with-suppressed-warnings is a byte-compiled function defined in elisp-scope.el.gz.

Signature

(elisp-scope--analyze-with-suppressed-warnings F WARNINGS &rest BODY)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elisp-scope.el.gz
(elisp-scope-define-analyzer with-suppressed-warnings (f warnings &rest body)
  (elisp-scope-report-s f 'macro)
  (dolist (warning warnings)
    (when-let* ((wsym (car-safe warning)))
      (elisp-scope-report-s wsym 'warning-type)))
  (elisp-scope-n body))