diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-01 11:05:30 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-01 11:05:30 -0700 |
commit | d5d8ca30e5f481a32414c42bcc3b5a042061ff07 (patch) | |
tree | febc223f19801e8e01b9498c5ba9d6c7bfcfa091 /lisp/progmodes/compile.el | |
parent | e54c5e4e25098be9df9d9c46d32165887b0ff9d3 (diff) | |
parent | b99e8f833671a2b52be654eb477830294c624a97 (diff) | |
download | emacs-d5d8ca30e5f481a32414c42bcc3b5a042061ff07.tar.gz emacs-d5d8ca30e5f481a32414c42bcc3b5a042061ff07.tar.bz2 emacs-d5d8ca30e5f481a32414c42bcc3b5a042061ff07.zip |
Merge from emacs-24; up to 117656
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r-- | lisp/progmodes/compile.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index d3d03cd2030..5de2c6afa53 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -1984,6 +1984,12 @@ Runs `compilation-mode-hook' with `run-mode-hooks' (which see). compilation-page-delimiter) ;; (set (make-local-variable 'compilation-buffer-modtime) nil) (compilation-setup) + ;; Turn off deferred fontifications in the compilation buffer, if + ;; the user turned them on globally. This is because idle timers + ;; aren't re-run after receiving input from a subprocess, so the + ;; buffer is left unfontified after the compilation exits, until + ;; some other input event happens. + (set (make-local-variable 'jit-lock-defer-time) nil) (setq buffer-read-only t) (run-mode-hooks 'compilation-mode-hook)) |