Variable: eshell-print-queue-size

eshell-print-queue-size is a customizable variable defined in esh-io.el.gz.

Value

5

Documentation

The size of the print queue, for doing buffered printing.

This is basically a speed enhancement, to avoid blocking the Lisp code from executing while Emacs is redisplaying.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defcustom eshell-print-queue-size 5
  "The size of the print queue, for doing buffered printing.
This is basically a speed enhancement, to avoid blocking the Lisp code
from executing while Emacs is redisplaying."
  :type 'integer
  :group 'eshell-io)