summaryrefslogtreecommitdiff
path: root/dash.el
diff options
context:
space:
mode:
Diffstat (limited to 'dash.el')
-rw-r--r--dash.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/dash.el b/dash.el
index ea7fece..41d1e53 100644
--- a/dash.el
+++ b/dash.el
@@ -1893,7 +1893,7 @@ LISTS, it is generally recommended to use `-unzip-lists' instead."
"Return an infinite circular copy of LIST.
The returned list cycles through the elements of LIST and repeats
from the beginning."
- (declare (pure t) (side-effect-free t))
+ (declare (side-effect-free t))
;; Also works with sequences that aren't lists.
(let ((newlist (append list ())))
(nconc newlist newlist)))