summaryrefslogtreecommitdiff
path: root/llama.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2024-09-15 18:29:25 +0200
committerJonas Bernoulli <jonas@bernoul.li>2024-09-15 18:29:25 +0200
commitfffe9cff4ba0478aafcbdf4375e28605d30dc537 (patch)
tree52fd3c813aa63e578a71f623b1c05844d483a60b /llama.el
parent763a6746e79ae773ae7951825b681fda42fb439c (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>
Diffstat (limited to 'llama.el')
-rw-r--r--llama.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.el b/llama.el
index 6c657ec..591b283 100644
--- a/llama.el
+++ b/llama.el
@@ -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