branch: elpa/llama
commit fffe9cff4ba0478aafcbdf4375e28605d30dc537
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    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 <fland...@tutanota.com>
---
 llama.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llama.el b/llama.el
index 6c657ec47e..591b28368a 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

Reply via email to