Function: help-fns--var-watchpoints
help-fns--var-watchpoints is a byte-compiled function defined in
help-fns.el.gz.
Signature
(help-fns--var-watchpoints VARIABLE)
Source Code
;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--var-watchpoints (variable)
(let ((watchpoints (get-variable-watchers variable)))
(when watchpoints
(princ " Calls these functions when changed: ")
;; FIXME: Turn function names into hyperlinks.
(princ watchpoints)
(terpri))))