mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
* lisp/net/rcirc.el: Undo previous change; it was a typo.
This commit is contained in:
parent
3739d51ef3
commit
ab9ae2fdfd
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue