Function: vip-copy-region-as-kill
vip-copy-region-as-kill is a byte-compiled function defined in
vip.el.gz.
Signature
(vip-copy-region-as-kill BEG END)
Documentation
If BEG and END do not belong to the same buffer, it copies empty region.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-copy-region-as-kill (beg end)
"If BEG and END do not belong to the same buffer, it copies empty region."
(condition-case nil
(copy-region-as-kill beg end)
(error (copy-region-as-kill beg beg))))