Remove duplicates in refile targets

* lisp/org.el (org-refile-get-targets): Remove duplicates in refile
  targets.
This commit is contained in:
Nicolas Goaziou 2017-05-22 08:16:42 +02:00
parent 0de7ad0430
commit 7560a49459
1 changed files with 1 additions and 1 deletions

View File

@ -11825,7 +11825,7 @@ order.")
(org-refile-cache-put tgs (buffer-file-name) descre))
(setq targets (append tgs targets))))))
(message "Getting targets...done")
(nreverse targets)))
(nreverse (delete-dups targets))))
(defun org-protect-slash (s)
(replace-regexp-in-string "/" "\\/" s nil t))