Function: widget-specify-insert

widget-specify-insert is a macro defined in wid-edit.el.gz.

Signature

(widget-specify-insert &rest FORM)

Documentation

Execute FORM without inheriting any text properties.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defmacro widget-specify-insert (&rest form)
  "Execute FORM without inheriting any text properties."
   (declare (debug (body)))
  `(save-restriction
    (let ((inhibit-read-only t)
	  (inhibit-modification-hooks t))
      (narrow-to-region (point) (point))
      (prog1 (progn ,@form)
	(goto-char (point-max))))))