Mercurial > emacs
changeset 10506:a8379d78b06a
(compile-internal): Force redisplay on compilation
buffer before executing compile process.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 20 Jan 1995 23:45:34 +0000 |
parents | 4f7f9b9ff513 |
children | de02c5579c5e |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Fri Jan 20 23:40:45 1995 +0000 +++ b/lisp/progmodes/compile.el Fri Jan 20 23:45:34 1995 +0000 @@ -398,6 +398,7 @@ (cons proc compilation-in-progress))) ;; No asynchronous processes available (message (format "Executing `%s'..." command)) + (sit-for 0) ;; Force redisplay (let ((status (call-process shell-file-name nil outbuf nil "-c" command)))) (message (format "Executing `%s'...done" command)))))