Function: edt-check-prefix
edt-check-prefix is a byte-compiled function defined in edt.el.gz.
Signature
(edt-check-prefix NUM)
Documentation
Indicate error if prefix is not positive.
Argument NUM is the prefix value tested.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; Check Prefix
;;;
(defun edt-check-prefix (num)
"Indicate error if prefix is not positive.
Argument NUM is the prefix value tested."
(if (<= num 0)
(error "Prefix must be positive")))