|
@@ -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))
|