From d4ddcbb8b3b4587fb274a9d0a15c8691a396e416 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 10 Apr 2012 18:20:04 +0200 Subject: [PATCH] Revert "org.el: Include tags from `org-tag-alist' when completing with the TAB key." This reverts commit 647396464d563634b980127673cf61769663407e. --- lisp/org.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index e43189ad2..3dd8f88f2 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -13726,10 +13726,9 @@ Returns the new tags string, or nil to not change the current settings." (condition-case nil (setq tg (org-icompleting-read "Tag: " - (append (or buffer-tags - (with-current-buffer buf - (org-get-buffer-tags))) - (mapcar 'car table)))) + (or buffer-tags + (with-current-buffer buf + (org-get-buffer-tags))))) (quit (setq tg ""))) (when (string-match "\\S-" tg) (add-to-list 'buffer-tags (list tg)) -- 2.11.4.GIT