Function: helpful--advised-p

helpful--advised-p is a byte-compiled function defined in helpful.el.

Signature

(helpful--advised-p SYM)

Documentation

Does SYM have advice associated with it?

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--advised-p (sym)
  "Does SYM have advice associated with it?"
  (and (symbolp sym)
       (advice--p (advice--symbol-function sym))))