branch: elpa/llama commit 89affb8ad83c77d2fb5488644e655ddbf718b610 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Complete correction of outdated examples Finish [1: cea812d]. 1: 2024-05-20 cea812d16129749deb524771e615a4a831604a83 Correct outdated examples --- README.org | 2 +- llama.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 1f9dd6bb86..43411a0f73 100644 --- a/README.org +++ b/README.org @@ -27,7 +27,7 @@ instead of ~&1~. Instead of: #+begin_src emacs-lisp - (lambda (a _ &optional c &rest d) + (lambda (a &optional _ c &rest d) (foo a (bar c) d)) #+end_src diff --git a/llama.el b/llama.el index 2f3c407aee..676c544996 100644 --- a/llama.el +++ b/llama.el @@ -51,7 +51,7 @@ ;; Instead of: ;; -;; (lambda (a _ &optional c &rest d) +;; (lambda (a &optional _ c &rest d) ;; (foo a (bar c) d)) ;; ;; you can use this macro and write: @@ -104,7 +104,7 @@ instead of `&1'. Instead of: - (lambda (a _ &optional c &rest d) + (lambda (a &optional _ c &rest d) (foo a (bar c) d)) you can use this macro and write: