]> git.eshelyaron.com Git - emacs.git/commitdiff
Change defcustom types of two non-standard hooks
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 27 Feb 2021 04:43:06 +0000 (05:43 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 27 Feb 2021 04:43:06 +0000 (05:43 +0100)
* lisp/erc/erc.el (erc-before-connect, erc-after-connect): Change
type from 'hook to 'function (bug#34657).

lisp/erc/erc.el

index dd7f50fb381f20d14141741cb9129de706abde69..7ee409b7351847593f98b5b79e278f4367257c2f 100644 (file)
@@ -2136,19 +2136,20 @@ If no buffer matches, return nil."
           (erc-current-nick-p nick)))))
 
 (defcustom erc-before-connect nil
-  "Hook called before connecting to a server.
-This hook gets executed before `erc' actually invokes `erc-mode'
-with your input data.  The functions in here get called with three
-parameters, SERVER, PORT and NICK."
+  "Functions called before connecting to a server.
+The functions in this variable gets executed before `erc'
+actually invokes `erc-mode' with your input data.  The functions
+in here get called with three parameters, SERVER, PORT and NICK."
   :group 'erc-hooks
-  :type 'hook)
+  :type '(repeat function))
 
 (defcustom erc-after-connect nil
-  "Hook called after connecting to a server.
-This hook gets executed when an end of MOTD has been received.  All
-functions in here get called with the parameters SERVER and NICK."
+  "Functions called after connecting to a server.
+This functions in this variable gets executed when an end of MOTD
+has been received.  All functions in here get called with the
+parameters SERVER and NICK."
   :group 'erc-hooks
-  :type 'hook)
+  :type '(repeat function))
 
 ;;;###autoload
 (defun erc-select-read-args ()