emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99466: * erc-services.el (erc-nickse


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99466: * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
Date: Sun, 07 Feb 2010 01:36:17 -0500
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 99466
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sun 2010-02-07 01:36:17 -0500
message:
  * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
modified:
  lisp/erc/ChangeLog
  lisp/erc/erc-services.el
=== modified file 'lisp/erc/ChangeLog'
--- a/lisp/erc/ChangeLog        2010-01-25 18:49:23 +0000
+++ b/lisp/erc/ChangeLog        2010-02-07 06:36:17 +0000
@@ -1,3 +1,7 @@
+2010-02-07  Vivek Dasmohapatra  <address@hidden>
+
+       * erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
+
 2010-01-25  Vivek Dasmohapatra  <address@hidden>
 
        * erc-backend.el (erc-session-connector): New var.

=== modified file 'lisp/erc/erc-services.el'
--- a/lisp/erc/erc-services.el  2010-01-13 08:35:10 +0000
+++ b/lisp/erc/erc-services.el  2010-02-07 06:36:17 +0000
@@ -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))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]