* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
This commit is contained in:
parent
cec2114e7b
commit
5708ce5e83
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue