# HG changeset patch # User Chong Yidong # Date 1265524577 18000 # Node ID c984638f1446c03db740552e81c769718bc8c37a # Parent f2353518b99497aaceedec1ae392258f24d226f1 * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520). diff -r f2353518b994 -r c984638f1446 lisp/erc/ChangeLog --- a/lisp/erc/ChangeLog Sun Feb 07 01:23:10 2010 -0500 +++ b/lisp/erc/ChangeLog Sun Feb 07 01:36:17 2010 -0500 @@ -1,3 +1,7 @@ +2010-02-07 Vivek Dasmohapatra + + * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520). + 2010-01-25 Vivek Dasmohapatra * erc-backend.el (erc-session-connector): New var. diff -r f2353518b994 -r c984638f1446 lisp/erc/erc-services.el --- a/lisp/erc/erc-services.el Sun Feb 07 01:23:10 2010 -0500 +++ b/lisp/erc/erc-services.el Sun Feb 07 01:36:17 2010 -0500 @@ -303,7 +303,11 @@ (boolean :tag "Use current nick in identify message?") (choice :tag "Command to use (optional)" (string :tag "Command") - (const :tag "No special command necessary" nil))))) + (const :tag "No special command necessary" nil)) + (choice :tag "Detect Success" + (regexp :tag "Pattern to match") + (const :tag "Do not try to detect success" nil))))) + (defsubst erc-nickserv-alist-sender (network &optional entry) (nth 1 (or entry (assoc network erc-nickserv-alist))))