* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.

This commit is contained in:
Juanma Barranquero 2011-02-11 01:49:28 +01:00
parent cec2114e7b
commit 5708ce5e83
2 changed files with 5 additions and 1 deletions

View 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.

View 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.