emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/rcirc-update 008a033 1/7: Print value on malformed input


From: Philip Kaludercic
Subject: feature/rcirc-update 008a033 1/7: Print value on malformed input
Date: Mon, 6 Sep 2021 17:30:17 -0400 (EDT)

branch: feature/rcirc-update
commit 008a033bbbb9d4f36cfcfdb36f6551fa3bdd4de8
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Print value on malformed input
    
    * rcirc.el (rcirc-define-command): Unquote argument
---
 lisp/net/rcirc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index e4649a6..6e4f99b 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -2470,7 +2470,7 @@ that, an interactive form can specified."
          (unless (if (listp ,argument)
                      (<= ,required (length ,argument) ,total)
                    (string-match ,regexp ,argument))
-           (user-error "Malformed input (%s): %S" ',command ',argument))
+           (user-error "Malformed input (%s): %S" ',command ,argument))
          (let ((process (or process (rcirc-buffer-process)))
               (target (or target rcirc-target)))
            (ignore target process)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]