Function: elp-output-insert-symname
elp-output-insert-symname is a byte-compiled function defined in
elp.el.gz.
Signature
(elp-output-insert-symname SYMNAME)
Documentation
Insert SYMNAME with text properties.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defun elp-output-insert-symname (symname)
"Insert SYMNAME with text properties."
(insert (propertize symname
'elp-symname (intern symname)
'keymap elp-results-symname-map
'mouse-face 'highlight
'face 'link
'help-echo "mouse-2 or RET jumps to definition")))