Function: widget-specify-insert

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

Signature

(widget-specify-insert &rest FORMS)

Documentation

Execute FORMS without inheriting any text properties.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defmacro widget-specify-insert (&rest forms)
  "Execute FORMS without inheriting any text properties."
  (declare (debug t))
  `(save-restriction
     (widget--allow-insertion
      (narrow-to-region (point) (point))
      (prog1 (progn ,@forms)
	(goto-char (point-max))))))