Fix error when setting more than one tag

* lisp/org.el (org-set-tags-command): Fix type of history argument in
  `completing-read'.
This commit is contained in:
Nicolas Goaziou 2018-04-26 02:30:09 +02:00
parent 92785f7bf6
commit 8a90b34aa6
1 changed files with 2 additions and 1 deletions

View File

@ -14255,7 +14255,8 @@ in Lisp code use `org-set-tags' instead."
(org-trim (completing-read
"Tags: "
#'org-tags-completion-function
nil nil current-tags 'org-tags-history)))))))
nil nil (org-make-tag-string current-tags)
'org-tags-history)))))))
(org-set-tags tags)))))
(defun org-align-tags (&optional all)