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