Function: ffap-symbol-value
ffap-symbol-value is a byte-compiled function defined in ffap.el.gz.
Signature
(ffap-symbol-value SYM &optional DEFAULT)
Documentation
Return value of symbol SYM, if bound, or DEFAULT otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
;;; User Variables:
(defun ffap-symbol-value (sym &optional default)
"Return value of symbol SYM, if bound, or DEFAULT otherwise."
(if (boundp sym) (symbol-value sym) default))