Function: vi-prefix-char-value
vi-prefix-char-value is a byte-compiled function defined in vi.el.gz.
Signature
(vi-prefix-char-value ARG)
Documentation
Get the char part of the current prefix argument.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-prefix-char-value (arg)
"Get the char part of the current prefix argument."
(cond ((null arg) nil)
((integerp arg) nil)
((consp arg) (cdr arg))
(t nil)))