From: Chong Yidong Date: Sun, 7 Feb 2010 06:36:17 +0000 (-0500) Subject: * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520). X-Git-Tag: emacs-pretest-23.1.93~92 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5cb9f67486056bfbc93d27dbe5611e8aa238798c;p=emacs.git * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520). --- diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 8daf590ee89..c192b3400b4 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -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 --git a/lisp/erc/erc-services.el b/lisp/erc/erc-services.el index c917a5692b8..50a100d6932 100644 --- a/lisp/erc/erc-services.el +++ b/lisp/erc/erc-services.el @@ -303,7 +303,11 @@ The last two elements are optional." (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))))