diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-03-07 10:43:19 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-03-07 10:44:22 -0800 |
commit | ab9ae2fdfd24f93a9dfa7b1e0567b6a29962b55c (patch) | |
tree | c532f608538fbe0a0d29addedd9909defe26843d /lisp/net | |
parent | 3739d51ef3b935b30e40ba4534fe362bc685865f (diff) | |
download | emacs-ab9ae2fdfd24f93a9dfa7b1e0567b6a29962b55c.tar.gz emacs-ab9ae2fdfd24f93a9dfa7b1e0567b6a29962b55c.tar.bz2 emacs-ab9ae2fdfd24f93a9dfa7b1e0567b6a29962b55c.zip |
* lisp/net/rcirc.el: Undo previous change; it was a typo.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/rcirc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index 9d53cd4436b..b1a6c1ce8d2 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -2685,7 +2685,7 @@ the only argument." (defun rcirc-handler-PART (process sender args _text) (let* ((channel (car args)) (reason (cadr args)) - (message "%s %s" channel reason)) + (message (concat channel " " reason))) (rcirc-print process sender "PART" channel message) ;; print in private chat buffer if it exists (when (rcirc-get-buffer (rcirc-buffer-process) sender) @@ -2697,7 +2697,7 @@ the only argument." (let* ((channel (car args)) (nick (cadr args)) (reason (nth 2 args)) - (message "%s %s %s" nick channel reason)) + (message (concat nick " " channel " " reason))) (rcirc-print process sender "KICK" channel message t) ;; print in private chat buffer if it exists (when (rcirc-get-buffer (rcirc-buffer-process) nick) |