From: Noam Postavsky Date: Mon, 27 May 2019 00:17:38 +0000 (-0400) Subject: Handle argument to rcirc /part properly (Bug#11157) X-Git-Tag: emacs-27.0.90~2729 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4541e31d9c522df3cef6e7ab939655f6f92e7fb4;p=emacs.git Handle argument to rcirc /part properly (Bug#11157) * lisp/net/rcirc.el (part): Split out channel name and part reason. * doc/misc/rcirc.texi (rcirc commands): Clarify that channel name may be provided to /part. --- diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi index bbcd0ed4620..1482a14fad5 100644 --- a/doc/misc/rcirc.texi +++ b/doc/misc/rcirc.texi @@ -337,9 +337,10 @@ channel name and join that channel. (Also @code{/join #emacs}.) @cindex disconnect from a channel @cindex stop talking on a channel @cindex kill channel buffer -This leaves the current channel. You can optionally provide a reason -for parting. When you kill a channel buffer, you automatically part the -corresponding channel. (Also @code{/part you are too weird!}.) +This leaves the current channel. You can optionally provide a +different channel name and reason for parting. When you kill a +channel buffer, you automatically part the corresponding channel. +(Also @code{/part #emacs you are too weird!}.) @item C-c C-r @kindex C-c C-r diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index 50cab7bd160..b317f002ee9 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -2185,12 +2185,21 @@ CHANNELS is a comma- or space-separated string of channel names." (read-string "Channel: ")))) (rcirc-send-string process (concat "INVITE " nick-channel))) -;; TODO: /part #channel reason, or consider removing #channel altogether (defun-rcirc-command part (channel) - "Part CHANNEL." + "Part CHANNEL. +CHANNEL should be a string of the form \"#CHANNEL-NAME REASON\". +If omitted, CHANNEL-NAME defaults to TARGET, and REASON defaults +to `rcirc-id-string'." (interactive "sPart channel: ") - (let ((channel (if (> (length channel) 0) channel target))) - (rcirc-send-string process (concat "PART " channel " :" rcirc-id-string)))) + (let ((channel (if (> (length channel) 0) channel target)) + (msg rcirc-id-string)) + (when (string-match "\\`\\([&#+!]\\S-+\\)?\\s-*\\(.+\\)?\\'" channel) + (when (match-beginning 2) + (setq msg (match-string 2 channel))) + (setq channel (if (match-beginning 1) + (match-string 1 channel) + target))) + (rcirc-send-string process (concat "PART " channel " :" msg)))) (defun-rcirc-command quit (reason) "Send a quit message to server with REASON."