]> git.eshelyaron.com Git - emacs.git/commitdiff
(nntp-authinfo-file): Add :group 'nntp.
authorKim F. Storm <storm@cua.dk>
Tue, 29 Jun 2004 12:49:35 +0000 (12:49 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 29 Jun 2004 12:49:35 +0000 (12:49 +0000)
lisp/gnus/nntp.el

index 8791c652a45bac17b87f8ca99b86e94e3ed32d4a..5722ba8456a95551781aa023919703c8e780537a 100644 (file)
@@ -174,7 +174,8 @@ server there that you can connect to.  See also
                                          (string :format "Login: %v"))
                                    (cons :format "%v"
                                          (const :format "" "password")
-                                         (string :format "Password: %v")))))))
+                                         (string :format "Password: %v"))))))
+  :group 'nntp)
 
 \f
 
@@ -223,7 +224,7 @@ noticing asynchronous data.")
 (defvar nntp-async-timer nil)
 (defvar nntp-async-process-list nil)
 
-(defvar nntp-ssl-program 
+(defvar nntp-ssl-program
   "openssl s_client -quiet -ssl3 -connect %s:%p"
 "A string containing commands for SSL connections.
 Within a string, %s is replaced with the server address and %p with
@@ -928,10 +929,10 @@ password contained in '~/.nntp-authinfo'."
 
 (defun nntp-open-ssl-stream (buffer)
   (let* ((process-connection-type nil)
-        (proc (start-process "nntpd" buffer 
+        (proc (start-process "nntpd" buffer
                              shell-file-name
                              shell-command-switch
-                             (format-spec nntp-ssl-program 
+                             (format-spec nntp-ssl-program
                                           (format-spec-make
                                            ?s nntp-address
                                            ?p nntp-port-number)))))