branch: elpa/llama commit cea812d16129749deb524771e615a4a831604a83 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Correct outdated examples --- README.md | 2 +- llama.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7757d7c724..0b80e4f149 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ you can use this macro and write: which expands to: ```elisp -(lambda (%1 _%2 &optional &3 &rest &*) +(lambda (%1 &optional _&2 &3 &rest &*) (foo %1 (bar &3) &*)) ``` diff --git a/llama.el b/llama.el index 2c0d324919..1c63a39b60 100644 --- a/llama.el +++ b/llama.el @@ -58,7 +58,7 @@ ;; ;; which expands to: ;; -;; (lambda (%1 _%2 &optional &3 &rest &*) +;; (lambda (%1 &optional _&2 &3 &rest &*) ;; (foo %1 (bar &3) &*)) ;; Unused trailing arguments and mandatory unused arguments at the @@ -111,7 +111,7 @@ you can use this macro and write: which expands to: - (lambda (%1 _%2 &optional &3 &rest &*) + (lambda (%1 &optional _&2 &3 &rest &*) (foo %1 (bar &3) &*)) Unused trailing arguments and mandatory unused arguments at the