Function: find-function-update-type-alist
find-function-update-type-alist is an autoloaded and byte-compiled
function defined in find-func.el.gz.
Signature
(find-function-update-type-alist SYMBOL TYPE VARIABLE)
Documentation
Update SYMBOL property find-function-type-alist with (TYPE . VARIABLE).
Property find-function-type-alist is a symbol-specific version
of variable find-function-regexp-alist and has the same format.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-function-update-type-alist (symbol type variable)
"Update SYMBOL property `find-function-type-alist' with (TYPE . VARIABLE).
Property `find-function-type-alist' is a symbol-specific version
of variable `find-function-regexp-alist' and has the same format."
(setf (alist-get type (get symbol 'find-function-type-alist)) variable))