Variable: region-insert-function
region-insert-function is a variable defined in simple.el.gz.
Value
#[128 "\300\301\302#\207"
[apply cua--rectangle-region-insert
#[128 "\300\301\302#\207"
[apply rectangle--insert-region
#[257 "\300\205\211\204\f\301c\210\302@!\210A\262\303\262\202\207"
[t 10 insert-for-yank nil]
4 "\n\n(fn LINES)"]
nil]
5 nil]
nil]
5 nil]
Documentation
Function to insert the region's content.
Called with one argument LINES. Insert the region as a list of lines.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defvar region-insert-function
(lambda (lines)
(let ((first t))
(while lines
(or first
(insert ?\n))
(insert-for-yank (car lines))
(setq lines (cdr lines)
first nil))))
"Function to insert the region's content.
Called with one argument LINES.
Insert the region as a list of lines.")