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."
  (let ((inhibit-read-only t)
	(inhibit-modification-hooks t))
    (apply 'insert args)))