summaryrefslogtreecommitdiff
path: root/common.el
diff options
context:
space:
mode:
Diffstat (limited to 'common.el')
-rw-r--r--common.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.el b/common.el
index 871f069..94cbe3c 100644
--- a/common.el
+++ b/common.el
@@ -461,6 +461,7 @@ current line; negative ARG means to put the line upwards."
(defun durand-take (n ls)
"Return the first N items of LS.
If the length of LS is less than N, then return the whole LS."
+ (declare (pure t) (side-effect-free t))
(cond
((< (length ls) n) ls)
((let ((i 0) result)