* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 11 Feb 2011 00:49:28 +0000 (01:49 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 11 Feb 2011 00:49:28 +0000 (01:49 +0100)
lisp/ChangeLog
lisp/net/rcirc.el

index be1cc0b..392510c 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
+
 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * server.el (server-process-filter): Use pcase.
index 8e4ded6..c3e4f3d 100644 (file)
@@ -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.