branch: elpa/llama
commit 85fb21ca30be475ead68ab5dfabdc28410992673
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
llama--collect: Correct name of internal variable
---
llama.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/llama.el b/llama.el
index d5a437a9a4..a0b8489e6f 100644
--- a/llama.el
+++ b/llama.el
@@ -198,9 +198,9 @@ this trickery, you can alternatively use this macro under
the name
expr)
((and (listp expr) (ignore-errors (length expr)))
(mapcan (lambda (elt)
- (let ((symbol (llama--collect elt args)))
- (and (not (eq symbol llama--unused-argument))
- (list symbol))))
+ (setq elt (llama--collect elt args))
+ (and (not (eq elt llama--unused-argument))
+ (list elt)))
expr))
((listp expr)
(prog1 expr