Function: viper-describe-arg
viper-describe-arg is a byte-compiled function defined in
viper-cmd.el.gz.
Signature
(viper-describe-arg ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
(defun viper-describe-arg (arg)
(let (val com)
(setq val (viper-P-val arg)
com (viper-getcom arg))
(if (null val)
(if (null com)
(message "Value is nil, and command is nil")
(message "Value is nil, and command is `%c'" com))
(if (null com)
(message "Value is `%d', and command is nil" val)
(message "Value is `%d', and command is `%c'" val com)))))