Function: widget-insert
widget-insert is an autoloaded and byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-insert &rest ARGS)
Documentation
Call insert with ARGS even if surrounding text is read only.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
;;;###autoload
(defun widget-insert (&rest args)
"Call `insert' with ARGS even if surrounding text is read only."
(widget--allow-insertion
(apply #'insert args)))