Function: vip-describe-arg
vip-describe-arg is a byte-compiled function defined in vip.el.gz.
Signature
(vip-describe-arg ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-describe-arg (arg)
(let (val com)
(setq val (vip-P-val arg)
com (vip-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)))))