From ef4bbe5608c76063f20abdfcccf8f00596e0be00 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 15 Apr 2013 01:11:03 +0200 Subject: [PATCH] org.el (org-uniquify): Use `copy-sequence' * org.el (org-uniquify): Use `copy-sequence'. Thanks to Thomas Dye for reporting this. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 541202817..b29643f75 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -21592,7 +21592,7 @@ for the search purpose." (defsubst org-uniquify (list) "Non-destructively remove duplicate elements from LIST." - (let ((res (copy-seq list))) (delete-dups res))) + (let ((res (copy-sequence list))) (delete-dups res))) (defun org-uniquify-alist (alist) "Merge elements of ALIST with the same key.