]> git.eshelyaron.com Git - emacs.git/commitdiff
(eudc-server, eudc-protocol): Fix :type.
authorDave Love <fx@gnu.org>
Wed, 17 Jan 2001 11:41:05 +0000 (11:41 +0000)
committerDave Love <fx@gnu.org>
Wed, 17 Jan 2001 11:41:05 +0000 (11:41 +0000)
lisp/net/eudc-vars.el

index d9c90010cd25341010f48285900444c4834acf73..29a04b0db44539cb25543077f919e01ab80d0659 100644 (file)
@@ -41,7 +41,7 @@
 A port number may be specified by appending a colon and a
 number to the name of the server.  Use `localhost' if the directory
 server resides on your computer (BBDB backend)."
-  :type  '(string :tag "Server")
+  :type  '(choice (string :tag "Server") (const :tag "None" nil))
   :group 'eudc)
 
 ;; Known protocols (used in completion)
@@ -59,7 +59,8 @@ Supported protocols are specified by `eudc-supported-protocols'."
   :type  `(choice :menu-tag "Protocol"
                  ,@(mapcar (lambda (s)
                              (list 'const ':tag (symbol-name s) s))
-                           eudc-known-protocols))
+                           eudc-known-protocols)
+                 (const :tag "None" nil))
   :group 'eudc)