Browse Source

Merge branch 'master' of code.orgmode.org:bzg/org-mode

Nicolas Goaziou 7 years ago
parent
commit
df40cf42e5
1 changed files with 5 additions and 5 deletions
  1. 5 5
      lisp/org.el

+ 5 - 5
lisp/org.el

@@ -4825,10 +4825,10 @@ Support for group tags is controlled by the option
    ((null alist2) alist1)
    ((null alist2) alist1)
    ((null alist1) alist2)
    ((null alist1) alist2)
    (t (let ((alist2-cars (mapcar (lambda (x) (car-safe x)) alist2))
    (t (let ((alist2-cars (mapcar (lambda (x) (car-safe x)) alist2))
-  	    to-add)
+	    to-add)
 	(dolist (i alist1)
 	(dolist (i alist1)
 	  (unless (member (car-safe i) alist2-cars)
 	  (unless (member (car-safe i) alist2-cars)
-  	    (push i to-add)))
+	    (push i to-add)))
 	(append to-add alist2)))))
 	(append to-add alist2)))))
 
 
 (defun org-set-regexps-and-options (&optional tags-only)
 (defun org-set-regexps-and-options (&optional tags-only)
@@ -13721,9 +13721,9 @@ instead of the agenda files."
 		     (org-tag-add-to-alist
 		     (org-tag-add-to-alist
 		      (org-get-buffer-tags)
 		      (org-get-buffer-tags)
 		      (mapcar (lambda (x)
 		      (mapcar (lambda (x)
-		     		(and (stringp (car-safe x))
-		     		     (list (car-safe x))))
-		     	      org-current-tag-alist)))
+				(and (stringp (car-safe x))
+				     (list (car-safe x))))
+			      org-current-tag-alist)))
 		   (if (car-safe files) files
 		   (if (car-safe files) files
 		     (org-agenda-files))))))))
 		     (org-agenda-files))))))))