From f9d05d03178f19180c7fc85e562e78bcf455f072 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Wed, 4 Mar 2009 13:28:13 +0100 Subject: [PATCH] Bug fix --- ORGWEBPAGE/Changes.org | 9 +++++++++ lisp/org.el | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ORGWEBPAGE/Changes.org b/ORGWEBPAGE/Changes.org index 25589f61c..5e0df6321 100644 --- a/ORGWEBPAGE/Changes.org +++ b/ORGWEBPAGE/Changes.org @@ -43,6 +43,15 @@ the cookie is fontified. Set it to =t= if you want the entire task headline to be fontified. +*** Tag searches are now case-sensitive + +From this release on, tag searches will be case sensitive. While +I still think it would be nice to have them case-insensitive, +this was both an inconsistency (TODO keyword searches have always +been case-sensitive), and trouble for coding some efficient +algorithms. So please make sure that you give the tags with +correct casing when prompted for a match expression. + ** Details *** Improved ASCII export of links diff --git a/lisp/org.el b/lisp/org.el index 33e205499..c7b6152a2 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -10046,7 +10046,7 @@ also TODO lines." `(,po (or ,gv "") ,pv) `(,po (string-to-number (or ,gv "")) ,(string-to-number pv) )))) - (t `(member tag tags-list))) + (t `(member ,tag tags-list))) mm (if minus (list 'not mm) mm) term rest) (push mm tagsmatcher)) -- 2.11.4.GIT