Function: speedbar-try-completion
speedbar-try-completion is a byte-compiled function defined in
speedbar.el.gz.
Signature
(speedbar-try-completion STRING ALIST)
Documentation
A wrapper for try-completion.
Passes STRING and ALIST to try-completion if ALIST
passes some tests.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-try-completion (string alist)
"A wrapper for `try-completion'.
Passes STRING and ALIST to `try-completion' if ALIST
passes some tests."
(if (and (consp alist)
(listp (car alist)) (stringp (car (car alist))))
(try-completion string alist)
nil))