Variable: artist-flood-fill-right-border

artist-flood-fill-right-border is a customizable variable defined in artist.el.gz.

Value

window-width

Documentation

Right edge definition, used when flood-filling.

When flood-filling, if the area is not closed off to the right, then flood-filling will fill no more to the right than specified by this variable. This limit is called the fill-border.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defcustom artist-flood-fill-right-border 'window-width
  "Right edge definition, used when flood-filling.

When flood-filling, if the area is not closed off to the right, then
flood-filling will fill no more to the right than specified by this
variable.  This limit is called the fill-border."
  :group 'artist
  :type '(choice (const :tag "limited to window" window-width)
		 (const :tag "limited to value of `fill-column'" fill-column)))