diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-09-07 14:02:39 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-09-07 14:02:39 +0200 |
| commit | 85fb21ca30be475ead68ab5dfabdc28410992673 (patch) | |
| tree | 71b151ae10993808d241b47aca3837df07a9b5ba /llama.el | |
| parent | 0b881ab4542e3b900bfbeec811fa0c932be2ea29 (diff) | |
llama--collect: Correct name of internal variable
Diffstat (limited to 'llama.el')
| -rw-r--r-- | llama.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
