Function: reb-do-update

reb-do-update is a byte-compiled function defined in re-builder.el.gz.

Signature

(reb-do-update &optional SUBEXP)

Documentation

Update matches in the RE Builder target window.

If SUBEXP is non-nil mark only the corresponding sub-expressions.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
;; Non-interactive functions below
(defun reb-do-update (&optional subexp)
  "Update matches in the RE Builder target window.
If SUBEXP is non-nil mark only the corresponding sub-expressions."
  (reb-assert-buffer-in-window)
  (reb-update-regexp)
  (reb-update-overlays subexp))