summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2019-05-26 20:17:38 -0400
committerNoam Postavsky <npostavs@gmail.com>2019-06-01 20:01:43 -0400
commit4541e31d9c522df3cef6e7ab939655f6f92e7fb4 (patch)
treea95f90b569905192e1280db0eb6f4541be4202ed
parentb9c0e3e8c01b5d6cd9b86e41c31e228bd6ba45cc (diff)
downloademacs-4541e31d9c522df3cef6e7ab939655f6f92e7fb4.tar.gz
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.
-rw-r--r--doc/misc/rcirc.texi7
-rw-r--r--lisp/net/rcirc.el17
2 files changed, 17 insertions, 7 deletions
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."