From: Philip Kaludercic Date: Tue, 27 Jul 2021 08:08:06 +0000 (+0200) Subject: Fix TOPIC command X-Git-Tag: emacs-28.0.90~948^2~34 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=262fbe1a47054c1a681e538868cdb68119e79df9;p=emacs.git Fix TOPIC command * rcirc.el (topic): Add target argument. --- diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index 3c7ccedceda..60751c14e2b 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -2562,8 +2562,8 @@ With a prefix arg, prompt for new topic." (interactive (list (and current-prefix-arg (read-string "List names in channel: ")))) (if (> (length topic) 0) - (rcirc-send-string process "TOPIC" : topic) - (rcirc-send-string process "TOPIC"))) + (rcirc-send-string process "TOPIC" target : topic) + (rcirc-send-string process "TOPIC" target))) (rcirc-define-command whois (nick) "Request information from server about NICK."