From b05cbf73a0ad92b2a32cd2ac365cc05b1dd8be42 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 10 Apr 2012 18:04:28 +0200 Subject: [PATCH] Revert "org.el: Fix bug when gathering tag completion options." This reverts commit e48d67ed6d6a0f352449fbeea6091b6f216c9990. This commit doesn't take care of tag groups. --- lisp/org.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index d3f58efb0..17a8834ab 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -13730,10 +13730,7 @@ Returns the new tags string, or nil to not change the current settings." (append (or buffer-tags (with-current-buffer buf (mapcar 'car (org-get-buffer-tags)))) - (delq nil - (mapcar (lambda (x) - (if (stringp - (car x)) x)) table)))))) + (mapcar 'car table))))) (quit (setq tg ""))) (when (string-match "\\S-" tg) (add-to-list 'buffer-tags (list tg))