]> git.eshelyaron.com Git - emacs.git/commitdiff
Make rcirc PART and QUIT reasons customizable (Bug#12857)
authorDaniel Ralston <wubbulous@gmail.com>
Thu, 13 Dec 2012 15:05:08 +0000 (07:05 -0800)
committerNoam Postavsky <npostavs@gmail.com>
Sun, 2 Jun 2019 00:01:43 +0000 (20:01 -0400)
* rcirc.el: (rcirc-default-part-reason, rcirc-default-quit-reason):
New customizable vars.
(rcirc-cmd-quit, rcirc-cmd-part): Consult them.

Copyright-paperwork-exempt: yes

lisp/net/rcirc.el

index b317f002ee99802bfbf1410d0d1facad5fe9f2ce..9c3828caf565442cf0ed64642c1bb8978cd3a6ba 100644 (file)
@@ -45,6 +45,8 @@
 (require 'ring)
 (require 'time-date)
 
+(defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
+
 (defgroup rcirc nil
   "Simple IRC client."
   :version "22.1"
@@ -137,6 +139,16 @@ display purposes. If absent, the real server name will be displayed instead."
   :version "24.1"                       ; changed default
   :type 'string)
 
+(defcustom rcirc-default-part-reason rcirc-id-string
+  "The default reason to send when parting from a channel.
+Used when no reason is explicitly given."
+  :type 'string)
+
+(defcustom rcirc-default-quit-reason rcirc-id-string
+  "The default reason to send when quitting a server.
+Used when no reason is explicitly given."
+  :type 'string)
+
 (defcustom rcirc-fill-flag t
   "Non-nil means line-wrap messages printed in channel buffers."
   :type 'boolean)
@@ -413,7 +425,6 @@ will be killed."
 (defvar rcirc-timeout-seconds 600
   "Kill connection after this many seconds if there is no activity.")
 
-(defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
 \f
 (defvar rcirc-startup-channels nil)
 
@@ -2189,10 +2200,10 @@ CHANNELS is a comma- or space-separated string of channel names."
   "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'."
+to `rcirc-default-part-reason'."
   (interactive "sPart channel: ")
   (let ((channel (if (> (length channel) 0) channel target))
-        (msg rcirc-id-string))
+        (msg rcirc-default-part-reason))
     (when (string-match "\\`\\([&#+!]\\S-+\\)?\\s-*\\(.+\\)?\\'" channel)
       (when (match-beginning 2)
         (setq msg (match-string 2 channel)))
@@ -2207,7 +2218,7 @@ to `rcirc-id-string'."
   (rcirc-send-string process (concat "QUIT :"
                                     (if (not (zerop (length reason)))
                                         reason
-                                      rcirc-id-string))))
+                                       rcirc-default-quit-reason))))
 
 (defun-rcirc-command reconnect (_)
   "Reconnect to current server."