Also, I found the following htmlize workaound in org.el, so seems the
workround is already built-in in org-mode. Hopefully with the bug fix
this can be removed.
-----
;; Fix a bug in htmlize where there are text properties (face nil)
(eval-after-load "htmlize"
'(progn
(defadvice htmlize-faces-in-buffer (after org-no-nil-faces activate)
"Make sure there are no nil faces"
(setq ad-return-value (delq nil ad-return-value)))))
Wanrong Lin wrote:
Found the bug and fixed it as following (see the comment line marked
with <WL>)
-------------
(defun org-agenda-align-tags (&optional line)
"Align all tags in agenda items to `org-agenda-tags-column'."
(let ((inhibit-read-only t) l c)
(save-excursion
(goto-char (if line (point-at-bol) (point-min)))
(while (re-search-forward (org-re "\\([
\t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$")
(if line (point-at-eol) nil) t)
(add-text-properties
(match-beginning 2) (match-end 2)
;; <WL>: bug fix against 5.22a
(list 'face (delq nil (list 'org-tag (get-text-property
(match-beginning 2) 'face)))))
(setq l (- (match-end 2) (match-beginning 2))
c (if (< org-agenda-tags-column 0)
(- (abs org-agenda-tags-column) l)
org-agenda-tags-column))
(delete-region (match-beginning 1) (match-end 1))
(goto-char (match-beginning 1))
(insert (org-add-props
(make-string (max 1 (- c (current-column))) ?\ )
(text-properties-at (point))))))))
Wanrong Lin wrote:
More update:
In a tag search result buffer, I move the cursor to a tag, and eval
(get-text-property (point) 'face), and I get: (org-tag nil). So this
"nil" is causing the problem, but I don't know where it is sneaked in.
Wanrong
Just some update:
I called (org-restart-font-lock) function inside my tag search
result buffer, and I can see a new "Invalid face reference: nil [X
times]" message is generated in the "*Messages*" buffer, with "X"
keeps increasing. I have "jit-lock-mode" (Just in time font locking)
enabled in my emacs config, so I guess that ticking "X" number is
from the background font locking process.
It seems something is wrong with font locking for tags. But this
only happens in tag search result buffer. It does not happen in
regular agenda buffer.
I don't know how to proceed to pin-point this. Can any of you guys
also reproduce this? Any suggestions? Thank you.
Wanrong
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode