Browse Source

Remove duplicates in refile targets

* lisp/org.el (org-refile-get-targets): Remove duplicates in refile
  targets.
Nicolas Goaziou 7 years ago
parent
commit
7560a49459
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

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