| 
					
				 | 
			
			
				@@ -3919,7 +3919,7 @@ agenda display, configure `org-agenda-finalize-hook'." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		  (put-text-property (point-at-bol) (point-at-eol) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				     'tags 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				     (org-with-point-at mrk 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				       (mapcar #'downcase (org-get-tags))))))))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				       (org-get-tags)))))))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(setq org-agenda-represented-tags nil 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	      org-agenda-represented-categories nil) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(when org-agenda-top-headline-filter 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -6731,7 +6731,7 @@ Any match of REMOVE-RE will be removed from TXT." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(org-add-props rtn nil 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	  'org-category category 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-	  'tags (mapcar 'org-downcase-keep-props tags) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	  'tags tags 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	  'org-priority-highest org-priority-highest 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	  'org-priority-lowest org-priority-lowest 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	  'time-of-day time-of-day 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -6776,12 +6776,6 @@ The modified list may contain inherited tags, and tags matched by 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			  (if have-i "::" ":")))))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   txt) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-(defun org-downcase-keep-props (s) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  (let ((props (text-properties-at 0 s))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    (setq s (downcase s)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    (add-text-properties 0 (length s) props s) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    s)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defun org-agenda-add-time-grid-maybe (list ndays todayp) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -8074,7 +8068,7 @@ If the line does not have an effort defined, return nil." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 When NO-OPERATOR is non-nil, do not add the + operator to 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 returned tags." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   (if org-group-tags 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      (let ((case-fold-search t) rtn) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      (let (case-fold-search rtn) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(mapc 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 (lambda (f) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	   (let (f0 dir) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -8082,7 +8076,7 @@ returned tags." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		 (setq dir (match-string 1 f) f0 (match-string 2 f)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	       (setq dir (if no-operator "" "+") f0 f)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	     (setq rtn (append (mapcar (lambda(f1) (concat dir f1)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				       (org-tags-expand f0 t t)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				       (org-tags-expand f0 t)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			       rtn)))) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 filter) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	(reverse rtn)) 
			 |