Function: vip-replace-char

vip-replace-char is an interactive and byte-compiled function defined in vip.el.gz.

Signature

(vip-replace-char ARG)

Documentation

Replace the following ARG chars by the character read.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-replace-char (arg)
  "Replace the following ARG chars by the character read."
  (interactive "P")
  (let ((val (vip-p-val arg)) (com (vip-getcom arg)))
    (setq vip-d-com (list 'vip-replace-char val ?r))
    (vip-replace-char-subr (if (equal com ?r) vip-d-char (read-char)) val)))