Function: smart-tags-noselect-function
smart-tags-noselect-function is a byte-compiled function defined in
hmouse-tag.el.
Signature
(smart-tags-noselect-function)
Documentation
Return the best available function for finding a tag definition.
The function does not select the tag definition.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
;;; ************************************************************************
;;; Private functions
;;; ************************************************************************
(defun smart-tags-noselect-function ()
"Return the best available function for finding a tag definition.
The function does not select the tag definition."
(car (delq nil (mapcar (lambda (func) (if (fboundp func) func))
'(hsys-xref-definition find-tag-noselect find-tag-internal)))))