diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-02-28 14:29:31 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-02-28 14:29:31 +0100 |
| commit | 68d885b2c3f945e8c404a614f72d5cacfbb6c593 (patch) | |
| tree | 03539f3abd984b6b42323ddab522fd278c74249e | |
| parent | 60b949fb0aa234dde470cfd6bf622ef4d7a98b7a (diff) | |
No longer use and-let* macro
This macro was only added in Emacs 26.1.
| -rw-r--r-- | llama.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -135,7 +135,8 @@ It also looks a bit like #\\='function." (when (or symbol symbols) (push symbol symbols))) symbols) - (and-let* ((rest (aref args 0))) (list rest)))))))) + (let ((rest (aref args 0))) + (and rest (list rest))))))))) (defun llama--collect (data args) (cond |
