emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Starting emacs followed directly by org-agenda search and visiti


From: Nicolas Richard
Subject: Re: [O] Starting emacs followed directly by org-agenda search and visiting file removes color formatting
Date: Wed, 26 Jun 2013 11:44:01 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Nicolas Richard <address@hidden> writes:
> I just noticed this thread, which i think reports exactly the issue I
> reported here [this thread was before, but the title didn't catch my
> eyes -- sorry about that] <address@hidden> and more or less
> "fixed" here <address@hidden> (not sent as a patch because I'm
> unsure about it)

s/patch/commit/

Let me make that a commit anyway -- I've had no problem with it since I
applied it to my tree and maybe it's easier for you to review. HTH :

>From e7e9946235df776cf9b8998ff80116d06597668e Mon Sep 17 00:00:00 2001
From: Nicolas Richard <address@hidden>
Date: Fri, 21 Jun 2013 10:23:43 +0200
Subject: [PATCH] Move (org-set-font-lock-defaults) from
 (org-set-regexps-and-options) to (org-mode)

* lisp/org.el (org-set-regexps-and-options): don't set font-lock defaults here.
(org-mode): set them here.

This fixes the bug mentionned in [[gnus:nntp+news.gmane.org:address@hidden
---
 lisp/org.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index f55c53e..7fd1576 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -5146,8 +5146,7 @@ Support for group tags is controlled by the option
            (mapcar (lambda (w) (substring w 0 -1))
                    (list org-scheduled-string org-deadline-string
                          org-clock-string org-closed-string)))
-      (org-compute-latex-and-related-regexp)
-      (org-set-font-lock-defaults))))
+      (org-compute-latex-and-related-regexp))))
 
 (defun org-file-contents (file &optional noerror)
   "Return the contents of FILE, as a string."
@@ -5331,6 +5330,7 @@ The following commands are available:
     (setq buffer-display-table org-display-table))
   (org-set-regexps-and-options-for-tags)
   (org-set-regexps-and-options)
+  (org-set-font-lock-defaults)
   (when (and org-tag-faces (not org-tags-special-faces-re))
     ;; tag faces set outside customize.... force initialization.
     (org-set-tag-faces 'org-tag-faces org-tag-faces))
-- 
1.8.1.5



reply via email to

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