Agenda view: Make sure tags have the correct case.
Reported by Wanrong Lin.
This commit is contained in:
parent
9011bd9303
commit
9ac252830d
|
@ -1,5 +1,9 @@
|
|||
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
|
||||
undefined label.
|
||||
|
||||
|
|
|
@ -9210,7 +9210,7 @@ only lines with a TODO keyword are included in the output."
|
|||
(if org-tags-match-list-sublevels
|
||||
(make-string (1- level) ?.) "")
|
||||
(org-get-heading))
|
||||
category tags-list)
|
||||
category (org-get-tags-at))
|
||||
priority (org-get-priority txt))
|
||||
(goto-char lspos)
|
||||
(setq marker (org-agenda-new-marker))
|
||||
|
|
Loading…
Reference in New Issue