summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus <rasmus@gmx.us>2018-03-27 23:33:35 +0200
committerKyle Meyer <kyle@kyleam.com>2018-03-27 18:21:31 -0400
commitab488dc4383fa313b132988819f738afe314132e (patch)
tree1075f8e129aa2aa2c5b9bbe012ef8b2688b26dd4
parent1b3cc4e4631a07c41632040439b73c1938714308 (diff)
downloadorg-mode-ab488dc4383fa313b132988819f738afe314132e.tar.gz
org.el: Fix whitespace issue blocking upstream commit
-rw-r--r--lisp/org.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/org.el b/lisp/org.el
index e01134f..1373861 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -4909,10 +4909,10 @@ Support for group tags is controlled by the option
((null alist2) alist1)
((null alist1) alist2)
(t (let ((alist2-cars (mapcar (lambda (x) (car-safe x)) alist2))
- to-add)
+ to-add)
(dolist (i alist1)
(unless (member (car-safe i) alist2-cars)
- (push i to-add)))
+ (push i to-add)))
(append to-add alist2)))))
(defun org-set-regexps-and-options (&optional tags-only)
@@ -14340,9 +14340,9 @@ instead of the agenda files."
(org-tag-add-to-alist
(org-get-buffer-tags)
(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
(org-agenda-files))))))))