]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix wrong type in erc-ignore hide-list options
authorF. Jason Park <jp@neverwas.me>
Tue, 3 Jan 2023 02:13:08 +0000 (18:13 -0800)
committerF. Jason Park <jp@neverwas.me>
Tue, 10 Jan 2023 14:34:01 +0000 (06:34 -0800)
* lisp/erc/erc.el (erc-network-hide-list, erc-channel-hide-list):
Fix type in custom definition.

lisp/erc/erc.el

index 6315d5aa482eeca9b3dc33f1953f67bceb87e28d..ba7db15cf8c04353bf84bb5f6910dbea4e330be3 100644 (file)
@@ -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.