Function: list-dynamic-libraries--loaded
list-dynamic-libraries--loaded is a byte-compiled function defined in
misc.el.gz.
Signature
(list-dynamic-libraries--loaded FROM)
Documentation
Compute the "Loaded from" column.
Internal use only.
Source Code
;; Defined in /usr/src/emacs/lisp/misc.el.gz
(defun list-dynamic-libraries--loaded (from)
"Compute the \"Loaded from\" column.
Internal use only."
(if from
(let ((name (car from))
(path (or (cdr from) "<unknown>")))
;; This is a roundabout way to change the tooltip without
;; having to replace the default printer function
(propertize name
'display (propertize name
'help-echo (concat "Loaded from: " path))))
""))