Function: vip-getCom
vip-getCom is a byte-compiled function defined in vip.el.gz.
Signature
(vip-getCom ARG)
Documentation
Get com part of prefix-argument ARG and modify it.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-getCom (arg)
"Get com part of prefix-argument ARG and modify it."
(let ((com (vip-getcom arg)))
(cond ((equal com ?c) ?C)
((equal com ?d) ?D)
((equal com ?y) ?Y)
(t com))))