emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-bug-tracker] bug#2134: closed ([PATCH] progmodes/compile.el: chec


From: GNU bug Tracking System
Subject: [Emacs-bug-tracker] bug#2134: closed ([PATCH] progmodes/compile.el: check global-font-lock-mode)
Date: Fri, 28 Jan 2011 22:13:03 +0000

Your message dated Fri, 28 Jan 2011 17:19:56 -0500
with message-id <address@hidden>
and subject line compile.el and font-lock
has caused the GNU bug report #801,
regarding [PATCH] progmodes/compile.el: check global-font-lock-mode
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
801: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=801
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] progmodes/compile.el: check global-font-lock-mode Date: Sat, 31 Jan 2009 14:34:46 +0200
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  <address@hidden>

        * 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 <address@hidden>
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 <address@hidden>
---
 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




--- End Message ---
--- Begin Message --- Subject: compile.el and font-lock Date: Fri, 28 Jan 2011 17:19:56 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)
I've just pushed a change which makes M-x compile and M-x grep work
without forcing font-lock to be enabled.  They also make the
error-parsing lazier, so it may be faster in some cases (tho probably
slower in others as well: speed was not the main focus of my coding).


        Stefan


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]