Function: edt-check-selection

edt-check-selection is a byte-compiled function defined in edt.el.gz.

Signature

(edt-check-selection)

Documentation

Indicate error if EDT selection is not active.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; Check Selection
;;;

(defun edt-check-selection ()
  "Indicate error if EDT selection is not active."
  (if (not edt-select-mode)
      (error "Selection NOT active")))