; Fix wrong type in erc-ignore hide-list options
* lisp/erc/erc.el (erc-network-hide-list, erc-channel-hide-list): Fix type in custom definition.
This commit is contained in:
parent
c267cd0151
commit
bb98666d03
1 changed files with 4 additions and 2 deletions
|
@ -323,7 +323,8 @@ A typical value would be \((\"Libera.Chat\" \"MODE\")
|
|||
\(\"OFTC\" \"JOIN\" \"QUIT\"))."
|
||||
:version "25.1"
|
||||
:group 'erc-ignore
|
||||
:type 'erc-message-type)
|
||||
:type '(alist :key-type string :value-type erc-message-type
|
||||
:options ("Libera.Chat")))
|
||||
|
||||
(defcustom erc-channel-hide-list nil
|
||||
"A list of IRC channels to hide message types from.
|
||||
|
@ -331,7 +332,8 @@ A typical value would be \((\"#emacs\" \"QUIT\" \"JOIN\")
|
|||
\(\"#erc\" \"NICK\")."
|
||||
:version "25.1"
|
||||
:group 'erc-ignore
|
||||
:type 'erc-message-type)
|
||||
:type '(alist :key-type string :value-type erc-message-type
|
||||
:options ("#emacs")))
|
||||
|
||||
(defcustom erc-disconnected-hook nil
|
||||
"Run this hook with arguments (NICK IP REASON) when disconnected.
|
||||
|
|
Loading…
Add table
Reference in a new issue