Agenda view: Make sure tags have the correct case.

Reported by Wanrong Lin.
This commit is contained in:
Carsten Dominik 2008-12-19 18:46:25 +01:00
parent 9011bd9303
commit 9ac252830d
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2008-12-19 Carsten Dominik <carsten.dominik@gmail.com> 2008-12-19 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-scan-tags): Rescan for tags, to get the correct
upcase/downcase stuff. This slows things down for now, but it
works.
* org-export-latex.el (org-export-latex-links): Fix bug with * org-export-latex.el (org-export-latex-links): Fix bug with
undefined label. undefined label.

View File

@ -9210,7 +9210,7 @@ only lines with a TODO keyword are included in the output."
(if org-tags-match-list-sublevels (if org-tags-match-list-sublevels
(make-string (1- level) ?.) "") (make-string (1- level) ?.) "")
(org-get-heading)) (org-get-heading))
category tags-list) category (org-get-tags-at))
priority (org-get-priority txt)) priority (org-get-priority txt))
(goto-char lspos) (goto-char lspos)
(setq marker (org-agenda-new-marker)) (setq marker (org-agenda-new-marker))