Function: artist-draw-region-reset

artist-draw-region-reset is a byte-compiled function defined in artist.el.gz.

Signature

(artist-draw-region-reset)

Documentation

Reset the current draw-region.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Functions related to trimming line-endings
;; The region between the topmost and bottommost visited line is
;; called a draw-region.
;;

(defun artist-draw-region-reset ()
  "Reset the current draw-region."
  (setq artist-draw-region-max-y 0)
  (setq artist-draw-region-min-y 1000000))