Make sure tags matching is case-insensitive.
This commit is contained in:
parent
17bdd57209
commit
04419cca3d
|
@ -1,3 +1,10 @@
|
||||||
|
2008-09-19 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
|
* org.el (org-scan-tags): Make sure that tags matching is not case
|
||||||
|
sensitive. TODO keyword matching is case sensitive, however, to
|
||||||
|
avoid confusion with similar words that are not meant to be
|
||||||
|
keywords.
|
||||||
|
|
||||||
2008-09-18 Carsten Dominik <dominik@science.uva.nl>
|
2008-09-18 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
* org.el (org-get-local-tags-at): New function.
|
* org.el (org-get-local-tags-at): New function.
|
||||||
|
|
|
@ -9456,7 +9456,7 @@ only lines with a TODO keyword are included in the output."
|
||||||
(setcdr (car tags-alist)
|
(setcdr (car tags-alist)
|
||||||
(org-remove-uniherited-tags (cdar tags-alist))))
|
(org-remove-uniherited-tags (cdar tags-alist))))
|
||||||
(when (and (or (not todo-only) (member todo org-not-done-keywords))
|
(when (and (or (not todo-only) (member todo org-not-done-keywords))
|
||||||
(eval matcher)
|
(let ((case-fold-search t)) (eval matcher))
|
||||||
(or
|
(or
|
||||||
(not (member org-archive-tag tags-list))
|
(not (member org-archive-tag tags-list))
|
||||||
;; we have an archive tag, should we use this anyway?
|
;; we have an archive tag, should we use this anyway?
|
||||||
|
|
Loading…
Reference in New Issue