diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-09-15 18:29:25 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-09-15 18:29:25 +0200 |
| commit | fffe9cff4ba0478aafcbdf4375e28605d30dc537 (patch) | |
| tree | 52fd3c813aa63e578a71f623b1c05844d483a60b | |
| parent | 763a6746e79ae773ae7951825b681fda42fb439c (diff) | |
llama--collect: Change order of symbols in error message
Show them in the same order as they appear in the code.
Suggested-by: L. Andrew <flandrew@tutanota.com>
| -rw-r--r-- | llama.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -190,7 +190,7 @@ this trickery, you can alternatively use this macro under the name (sym (aref args pos))) (unless (and fnpos (memq expr '(% &))) (when (and sym (not (equal expr sym))) - (error "`%s' and `%s' are mutually exclusive" expr sym)) + (error "`%s' and `%s' are mutually exclusive" sym expr)) (aset args pos expr))) (if (match-string 1 name) llama--unused-argument |
