diff options
| author | Dave Love | 2001-01-17 11:41:05 +0000 |
|---|---|---|
| committer | Dave Love | 2001-01-17 11:41:05 +0000 |
| commit | f1f06a697854c5ad3555d3b44c169a6ea26bf32f (patch) | |
| tree | d2eff1c2a8fac713813f663e0920a3b0c039e849 | |
| parent | 9ad4f3e55659c2833d86e48d8ba0362b927ece52 (diff) | |
| download | emacs-f1f06a697854c5ad3555d3b44c169a6ea26bf32f.tar.gz emacs-f1f06a697854c5ad3555d3b44c169a6ea26bf32f.zip | |
(eudc-server, eudc-protocol): Fix :type.
| -rw-r--r-- | lisp/net/eudc-vars.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/net/eudc-vars.el b/lisp/net/eudc-vars.el index d9c90010cd2..29a04b0db44 100644 --- a/lisp/net/eudc-vars.el +++ b/lisp/net/eudc-vars.el | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | A port number may be specified by appending a colon and a | 41 | A port number may be specified by appending a colon and a |
| 42 | number to the name of the server. Use `localhost' if the directory | 42 | number to the name of the server. Use `localhost' if the directory |
| 43 | server resides on your computer (BBDB backend)." | 43 | server resides on your computer (BBDB backend)." |
| 44 | :type '(string :tag "Server") | 44 | :type '(choice (string :tag "Server") (const :tag "None" nil)) |
| 45 | :group 'eudc) | 45 | :group 'eudc) |
| 46 | 46 | ||
| 47 | ;; Known protocols (used in completion) | 47 | ;; Known protocols (used in completion) |
| @@ -59,7 +59,8 @@ Supported protocols are specified by `eudc-supported-protocols'." | |||
| 59 | :type `(choice :menu-tag "Protocol" | 59 | :type `(choice :menu-tag "Protocol" |
| 60 | ,@(mapcar (lambda (s) | 60 | ,@(mapcar (lambda (s) |
| 61 | (list 'const ':tag (symbol-name s) s)) | 61 | (list 'const ':tag (symbol-name s) s)) |
| 62 | eudc-known-protocols)) | 62 | eudc-known-protocols) |
| 63 | (const :tag "None" nil)) | ||
| 63 | :group 'eudc) | 64 | :group 'eudc) |
| 64 | 65 | ||
| 65 | 66 | ||