From 262fbe1a47054c1a681e538868cdb68119e79df9 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Tue, 27 Jul 2021 10:08:06 +0200 Subject: [PATCH] Fix TOPIC command * rcirc.el (topic): Add target argument. --- lisp/net/rcirc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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." -- 2.39.5