Function: eshell-redisplay

eshell-redisplay is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-redisplay)

Documentation

Allow Emacs to redisplay buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell-redisplay ()
  "Allow Emacs to redisplay buffers."
  ;; for some strange reason, Emacs 21 is prone to trigger an
  ;; "args out of range" error in `sit-for', if this function
  ;; runs while point is in the minibuffer and the users attempt
  ;; to use completion.  Don't ask me.
  (condition-case nil
      (sit-for 0 0)
    (error nil)))