Function: cl--set-buffer-substring
cl--set-buffer-substring is a byte-compiled function defined in
cl-lib.el.gz.
Signature
(cl--set-buffer-substring START END VAL &optional INHERIT)
Documentation
Delete region from START to END and insert VAL.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-lib.el.gz
(defun cl--set-buffer-substring (start end val &optional inherit)
"Delete region from START to END and insert VAL."
(replace-region-contents start end val 0 nil inherit)
val)