aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorJuanma Barranquero2011-02-11 01:49:28 +0100
committerJuanma Barranquero2011-02-11 01:49:28 +0100
commit5708ce5e83340d735ca9b87f028caf0bf5709b6e (patch)
tree60dd8941e0f06a64dcd2f0f6cc83f6efd52d6f90 /lisp/net
parentcec2114e7b9a3e8d021c0931d96f4f06225350ae (diff)
downloademacs-5708ce5e83340d735ca9b87f028caf0bf5709b6e.tar.gz
emacs-5708ce5e83340d735ca9b87f028caf0bf5709b6e.zip
* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/rcirc.el2
1 files changed, 1 insertions, 1 deletions
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.")
720(defun rcirc-send-ctcp (process target request &optional args) 720(defun rcirc-send-ctcp (process target request &optional args)
721 (let ((args (if args (concat " " args) ""))) 721 (let ((args (if args (concat " " args) "")))
722 (rcirc-send-privmsg process target 722 (rcirc-send-privmsg process target
723 (format "\C-a%s%s\C-a" request args "")))) 723 (format "\C-a%s%s\C-a" request args))))
724 724
725(defun rcirc-buffer-process (&optional buffer) 725(defun rcirc-buffer-process (&optional buffer)
726 "Return the process associated with channel BUFFER. 726 "Return the process associated with channel BUFFER.