From: Philip Kaludercic Date: Sun, 5 Sep 2021 17:13:48 +0000 (+0200) Subject: Print value on malformed input X-Git-Tag: emacs-28.0.90~948^2~26 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=008a033bbbb9d4f36cfcfdb36f6551fa3bdd4de8;p=emacs.git Print value on malformed input * rcirc.el (rcirc-define-command): Unquote argument --- diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index e4649a6ab79..6e4f99b24c7 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)