emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103219: * net/rcirc.el (rcirc-send-c


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103219: * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
Date: Fri, 11 Feb 2011 01:49:28 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103219
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Fri 2011-02-11 01:49:28 +0100
message:
  * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
modified:
  lisp/ChangeLog
  lisp/net/rcirc.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-10 19:41:44 +0000
+++ b/lisp/ChangeLog    2011-02-11 00:49:28 +0000
@@ -1,3 +1,7 @@
+2011-02-11  Juanma Barranquero  <address@hidden>
+
+       * net/rcirc.el (rcirc-send-ctcp): Remove spurious arg to `format'.
+
 2011-02-10  Stefan Monnier  <address@hidden>
 
        * server.el (server-process-filter): Use pcase.

=== modified file 'lisp/net/rcirc.el'
--- a/lisp/net/rcirc.el 2011-02-10 16:56:00 +0000
+++ b/lisp/net/rcirc.el 2011-02-11 00:49:28 +0000
@@ -720,7 +720,7 @@
 (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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]