diff options
| author | Juanma Barranquero <lekktu@gmail.com> | 2011-02-11 01:49:28 +0100 |
|---|---|---|
| committer | Juanma Barranquero <lekktu@gmail.com> | 2011-02-11 01:49:28 +0100 |
| commit | 5708ce5e83340d735ca9b87f028caf0bf5709b6e (patch) | |
| tree | 60dd8941e0f06a64dcd2f0f6cc83f6efd52d6f90 | |
| parent | cec2114e7b9a3e8d021c0931d96f4f06225350ae (diff) | |
| download | emacs-5708ce5e83340d735ca9b87f028caf0bf5709b6e.tar.gz | |
* net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/rcirc.el | 2 |
2 files changed, 5 insertions, 1 deletions
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 <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. 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. |
