From: Juanma Barranquero Date: Fri, 11 Feb 2011 00:49:28 +0000 (+0100) Subject: * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~934 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5708ce5e83340d735ca9b87f028caf0bf5709b6e;p=emacs.git * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index be1cc0b6a52..392510c63d0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-02-11 Juanma Barranquero + + * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'. + 2011-02-10 Stefan Monnier * server.el (server-process-filter): Use pcase. diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index 8e4ded624de..c3e4f3d6169 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -720,7 +720,7 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.") (defun rcirc-send-ctcp (process target request &optional args) (let ((args (if args (concat " " args) ""))) (rcirc-send-privmsg process target - (format "\C-a%s%s\C-a" request args "")))) + (format "\C-a%s%s\C-a" request args)))) (defun rcirc-buffer-process (&optional buffer) "Return the process associated with channel BUFFER.