Function: helpful--original-value-differs-p
helpful--original-value-differs-p is a byte-compiled function defined
in helpful.el.
Signature
(helpful--original-value-differs-p SYM)
Documentation
Return t if SYM has an original value, and its current value is different.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--original-value-differs-p (sym)
"Return t if SYM has an original value, and its current
value is different."
(let ((orig-val-list (helpful--original-value sym)))
(and (consp orig-val-list)
(not (eq (car orig-val-list)
(symbol-value sym))))))