branch: elpa/llama
commit 68d885b2c3f945e8c404a614f72d5cacfbb6c593
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    No longer use and-let* macro
    
    This macro was only added in Emacs 26.1.
---
 llama.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/llama.el b/llama.el
index e7ec6a45af..7a563467f1 100644
--- a/llama.el
+++ b/llama.el
@@ -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

Reply via email to