Function: viper-pos-within-region

viper-pos-within-region is a byte-compiled function defined in viper-util.el.gz.

Signature

(viper-pos-within-region POS BEG END)

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-util.el.gz
;; Test if POS is between BEG and END
(defsubst viper-pos-within-region (pos beg end)
  (and (>= pos (min beg end)) (>= (max beg end) pos)))