1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).

This commit is contained in:
Chong Yidong 2010-02-07 01:36:17 -05:00
parent a4cc44cf0e
commit 5cb9f67486
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-02-07 Vivek Dasmohapatra <vivek@etla.org>
* erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
2010-01-25 Vivek Dasmohapatra <vivek@etla.org>
* erc-backend.el (erc-session-connector): New var.

View File

@ -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))))