org.el: Remove useless `org-without-partial-completion'.

* org.el (org-set-tags): Remove useless `org-without-partial-completion'.
This commit is contained in:
Bastien Guerry 2011-06-30 17:06:13 +02:00
parent db052b7de9
commit 9c582ceed8
1 changed files with 3 additions and 4 deletions

View File

@ -13013,10 +13013,9 @@ With prefix ARG, realign all tags in headings in the current buffer."
org-todo-key-alist))
(let ((org-add-colon-after-tag-completion t))
(org-trim
(org-without-partial-completion
(org-icompleting-read "Tags: "
'org-tags-completion-function
nil nil current 'org-tags-history)))))))
(org-icompleting-read "Tags: "
'org-tags-completion-function
nil nil current 'org-tags-history))))))
(while (string-match "[-+&]+" tags)
;; No boolean logic, just a list
(setq tags (replace-match ":" t t tags))))