branch: externals/dash
commit c134705f2a94fffa368505b5ac3660aeaea43aa0
Author: Fredrik Bergroth <[email protected]>
Commit: Fredrik Bergroth <[email protected]>
Fix compile warning
---
dash.el | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dash.el b/dash.el
index 51aa3ec..d701512 100644
--- a/dash.el
+++ b/dash.el
@@ -1126,8 +1126,8 @@ sorts it in descending order."
`(pop ,source))
(t
`(progn
- (setq ,s (nthcdr ,skip-cdr ,s))
- (pop ,s)))))
+ (setq ,source (nthcdr ,skip-cdr ,source))
+ (pop ,source)))))
(defun dash--match-cons-get-car (skip-cdr source)
"Helper function generating idiomatic code to get nth car."