branch: elpa/isl
commit cc10e952b85876ef7e7c192846a028e2e59c9583
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
No need to use pcase in isl-iter-circular
---
isl.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/isl.el b/isl.el
index 271a8300cf5..0e11729f7bf 100644
--- a/isl.el
+++ b/isl.el
@@ -791,7 +791,7 @@ all align operations you have to exit with RET."
(let ((lis seq))
(lambda ()
(let ((elm (car lis)))
- (setq lis (pcase lis (`(,_ . ,ll) (or ll seq))))
+ (setq lis (or (cdr lis) seq))
elm))))
(defun isl-iter-next (iterator)