Function: custom-add-link
custom-add-link is a byte-compiled function defined in custom.el.gz.
Signature
(custom-add-link SYMBOL WIDGET)
Documentation
To the custom option SYMBOL add the link WIDGET.
Source Code
;; Defined in /usr/src/emacs/lisp/custom.el.gz
(defun custom-add-link (symbol widget)
"To the custom option SYMBOL add the link WIDGET."
(let ((links (get symbol 'custom-links)))
(unless (member widget links)
(put symbol 'custom-links (cons widget links)))))