diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-08-30 19:14:45 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-08-30 19:14:45 +0200 |
| commit | 2de9e31bb5a1308f79b508208a758291021ee3f2 (patch) | |
| tree | 8d1c1d301993b6096b339e48fbbb1bde45c8ceb8 | |
| parent | 5c454f1a83c698668942603e595cec36a5211768 (diff) | |
Fix examples
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | llama.el | 10 |
2 files changed, 7 insertions, 7 deletions
@@ -40,8 +40,8 @@ you can use this macro and write: which expands to: ```elisp -(lambda (%1 _%2 &optional &3 &rest %*) - (foo %1 (bar &3) %*)) +(lambda (%1 _%2 &optional &3 &rest &*) + (foo %1 (bar &3) &*)) ``` The name `##` was chosen because that allows (optionally) @@ -58,12 +58,12 @@ ;; ;; you can use this macro and write: ;; -;; (##foo %1 (bar %3) %*) +;; (##foo %1 (bar &3) &*) ;; ;; which expands to: ;; -;; (lambda (%1 _%2 &optional %3 &rest %*) -;; (foo %1 (bar %3) %*)) +;; (lambda (%1 _%2 &optional &3 &rest &*) +;; (foo %1 (bar &3) &*)) ;; The name `##' was chosen because that allows (optionally) ;; omitting the whitespace between it and the following symbol. @@ -105,8 +105,8 @@ you can use this macro and write: which expands to: - (lambda (%1 _%2 &optional &3 &rest %*) - (foo %1 (bar &3) %*)) + (lambda (%1 _%2 &optional &3 &rest &*) + (foo %1 (bar &3) &*)) The name `##' was chosen because that allows (optionally) omitting the whitespace between it and the following symbol. |
