Function: edt-unset-match

edt-unset-match is a byte-compiled function defined in edt.el.gz.

Signature

(edt-unset-match)

Documentation

Unset match beginning and end markers.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-unset-match nil
  "Unset match beginning and end markers."
  (set-marker edt-match-beginning-mark nil)
  (set-marker edt-match-end-mark nil))