diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-02-07 01:36:17 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-02-07 01:36:17 -0500 |
commit | 5cb9f67486056bfbc93d27dbe5611e8aa238798c (patch) | |
tree | 747409dbf748b9cca7c128ebc1b07e30fffdf369 /lisp/erc/erc-services.el | |
parent | a4cc44cf0efd240bdcd2ac9013ea0f20067ccd94 (diff) | |
download | emacs-5cb9f67486056bfbc93d27dbe5611e8aa238798c.tar.gz emacs-5cb9f67486056bfbc93d27dbe5611e8aa238798c.tar.bz2 emacs-5cb9f67486056bfbc93d27dbe5611e8aa238798c.zip |
* erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
Diffstat (limited to 'lisp/erc/erc-services.el')
-rw-r--r-- | lisp/erc/erc-services.el | 6 |
1 files changed, 5 insertions, 1 deletions
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)))) |