From 1f80206166b0f3087fcb3649da9751523493db6d Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 10 Apr 2012 18:10:30 +0200 Subject: [PATCH] Revert "org.el (org-fast-tag-selection): Fix an bug when listing tags for completion." This reverts commit dca5af369c698961a36a32dc78eaa15e14ea808e. --- lisp/org.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 17a8834ab..e43189ad2 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -13726,11 +13726,10 @@ Returns the new tags string, or nil to not change the current settings." (condition-case nil (setq tg (org-icompleting-read "Tag: " - (delete-dups - (append (or buffer-tags - (with-current-buffer buf - (mapcar 'car (org-get-buffer-tags)))) - (mapcar 'car table))))) + (append (or buffer-tags + (with-current-buffer buf + (org-get-buffer-tags))) + (mapcar 'car table)))) (quit (setq tg ""))) (when (string-match "\\S-" tg) (add-to-list 'buffer-tags (list tg)) -- 2.11.4.GIT