Function: viper-standard-value

viper-standard-value is a byte-compiled function defined in viper-cmd.el.gz.

Signature

(viper-standard-value SYMBOL &optional STORAGE)

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
;; Get viper standard value of SYMBOL.  If symbol is customized, get its
;; standard value.  Otherwise, get the value saved in the alist STORAGE.  If
;; STORAGE is nil, use viper-saved-user-settings.
(defun viper-standard-value (symbol &optional storage)
  (or (eval (car (get symbol 'customized-value)) t)
      (eval (car (get symbol 'saved-value)) t)
      (nth 1 (assoc symbol (or storage viper-saved-user-settings)))))