Function: apropos-true-hit
apropos-true-hit is a byte-compiled function defined in apropos.el.gz.
Signature
(apropos-true-hit STR WORDS)
Documentation
Return t if STR is a genuine hit.
This may fail if only one of the keywords is matched more than once. This requires at least two keywords (unless only one was given).
Source Code
;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos-true-hit (str words)
"Return t if STR is a genuine hit.
This may fail if only one of the keywords is matched more than once.
This requires at least two keywords (unless only one was given)."
(or (not str)
(not words)
(not (cdr words))
(> (length (apropos-calc-scores str words)) 1)))