Function: bs--get-value
bs--get-value is a byte-compiled function defined in bs.el.gz.
Signature
(bs--get-value FUN &optional ARGS)
Documentation
Apply function FUN with arguments ARGS.
Return result of evaluation. Will return FUN if FUN is a number or a string.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--get-value (fun &optional args)
"Apply function FUN with arguments ARGS.
Return result of evaluation. Will return FUN if FUN is a number
or a string."
(cond ((numberp fun)
fun)
((stringp fun)
fun)
(t (apply fun args))))