Function: speedbar-fetch-replacement-function
speedbar-fetch-replacement-function is a byte-compiled function
defined in speedbar.el.gz.
Signature
(speedbar-fetch-replacement-function FUNCTION)
Documentation
Return a current mode-specific replacement for function, or nil.
Scans speedbar-mode-functions-list first for the current mode, then
for FUNCTION.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-fetch-replacement-function (function)
"Return a current mode-specific replacement for function, or nil.
Scans `speedbar-mode-functions-list' first for the current mode, then
for FUNCTION."
(cdr (assoc function
(cdr (assoc speedbar-initial-expansion-list-name
speedbar-mode-functions-list)))))