Variable: preview-gs-outstanding-limit

preview-gs-outstanding-limit is a customizable variable defined in preview.el.

Value

2

Documentation

Number of requests allowed to be outstanding.

This is the number of not-yet-completed requests we might at any time have piped into Ghostscript. If this number is larger, the probability of Ghostscript working continuously is higher when Emacs is rather busy. If this number is smaller, redisplay will follow changes in the displayed buffer area faster.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defcustom preview-gs-outstanding-limit 2
  "Number of requests allowed to be outstanding.
This is the number of not-yet-completed requests we
might at any time have piped into Ghostscript.  If
this number is larger, the probability of Ghostscript
working continuously is higher when Emacs is rather
busy.  If this number is smaller, redisplay will
follow changes in the displayed buffer area faster."
  :group 'preview-gs
  :type `(restricted-sexp
          :match-alternatives
          (,(lambda (value)
              (and (integerp value)
                   (> value 0)
                   (< value 10))))
          :tag "small number"))