Function: vip-append-to-register
vip-append-to-register is a byte-compiled function defined in
vip.el.gz.
Signature
(vip-append-to-register REG START END)
Documentation
Append region to text in register REG.
START and END are buffer positions indicating what to append.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
;; repeat last destructive command
(defun vip-append-to-register (reg start end)
"Append region to text in register REG.
START and END are buffer positions indicating what to append."
(set-register reg (concat (or (get-register reg) "")
(buffer-substring start end))))