From 5708ce5e83340d735ca9b87f028caf0bf5709b6e Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 11 Feb 2011 01:49:28 +0100 Subject: [PATCH] * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'. --- lisp/ChangeLog | 4 ++++ lisp/net/rcirc.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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. -- 2.11.4.GIT