Function: tooltip-set-param
tooltip-set-param is a byte-compiled function defined in
tooltip.el.gz.
This function is obsolete since 25.1; use (setf (alist-get ..) ..) instead
Signature
(tooltip-set-param ALIST KEY VALUE)
Documentation
Change the value of KEY in alist ALIST to VALUE.
If there's no association for KEY in ALIST, add one, otherwise change the existing association. Value is the resulting alist.
Source Code
;; Defined in /usr/src/emacs/lisp/tooltip.el.gz
;;; Displaying tips
(defun tooltip-set-param (alist key value)
"Change the value of KEY in alist ALIST to VALUE.
If there's no association for KEY in ALIST, add one, otherwise
change the existing association. Value is the resulting alist."
(declare (obsolete "use (setf (alist-get ..) ..) instead" "25.1"))
(setf (alist-get key alist) value)
alist)