GNU bug report logs -
#2134
[PATCH] progmodes/compile.el: check global-font-lock-mode
Previous Next
Reported by: Jari Aalto <jari.aalto <at> cante.net>
Date: Sat, 31 Jan 2009 12:40:04 UTC
Severity: minor
Merged with 801
Found in version 23.0.60
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Tags: patch
Here is patch to not to turn on font-lock unconditionally. Patch is
against Emacs version control tree check out 2009-01-31.
2009-01-31 Jari Aalto <jari.aalto <at> cante.net>
* progmodes/compile.el (compilation-start): Run
`font-lock-fontify-buffer' only if `global-font-lock-mode'
is non-nil.
From 473ca5257db6da8da4d31e4b9a2682f0972cc8c1 Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aalto <at> cante.net>
Date: Sat, 31 Jan 2009 14:27:23 +0200
Subject: [PATCH] lisp/progmodes/compile.el: (compilation-start): check global-font-lock-mode
Signed-off-by: Jari Aalto <jari.aalto <at> cante.net>
---
lisp/progmodes/compile.el | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 2554730..1259403 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1326,7 +1326,8 @@ Returns the compilation buffer created."
;; Without async subprocesses, the buffer is not yet
;; fontified, so fontify it now.
(let ((font-lock-verbose nil)) ; shut up font-lock messages
- (font-lock-fontify-buffer))
+ (if global-font-lock-mode
+ (font-lock-fontify-buffer)))
(set-buffer-modified-p nil)
(message "Executing `%s'...done" command)))
;; Now finally cd to where the shell started make/grep/...
--
1.5.6.5
This bug report was last modified 14 years and 180 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.