* nnimap.el (nnimap-id):
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jul 2008 13:17:41 +0000 (13:17 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 2 Jul 2008 13:17:41 +0000 (13:17 +0000)
* sieve-manage.el (sieve-manage-open): Doc fixes.

lisp/gnus/ChangeLog
lisp/gnus/nnimap.el
lisp/gnus/sieve-manage.el

index 10fb4e2..ab38653 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
+
+       * nnimap.el (nnimap-id):
+       * sieve-manage.el (sieve-manage-open): Doc fixes.
+
 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
 
        * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
 2004-09-01  Simon Josefsson  <jas@extundo.com>
 
        * message.el (message-canlock-generate): Require sha1, not
-       sha1-el.  (Can we get rid of this require alltogheter? It is ugly
+       sha1-el.  (Can we get rid of this require altogether?  It is ugly
        to require within a function.  Sadly, if sha1.el isn't loaded, the
        let binding in m-c-g will hide the defcustom definition, which is
        bad.)
index 8a9d5c7..49166b8 100644 (file)
@@ -424,8 +424,8 @@ restrict visible folders.")
 
 (defcustom nnimap-id nil
   "Plist with client identity to send to server upon login.
-Nil means no information is sent, symbol `no' to disable ID query
-alltogheter, or plist with identifier-value pairs to send to
+A nil value means no information is sent, symbol `no' to disable ID query
+altogether, or plist with identifier-value pairs to send to
 server.  RFC 2971 describes the list as follows:
 
    Any string may be sent as a field, but the following are defined to
index 38fece2..513aa9f 100644 (file)
@@ -443,12 +443,12 @@ Returns t if login was successful, nil otherwise."
 
 (defun sieve-manage-open (server &optional port stream auth buffer)
   "Open a network connection to a managesieve SERVER (string).
-Optional variable PORT is port number (integer) on remote server.
-Optional variable STREAM is any of `sieve-manage-streams' (a symbol).
-Optional variable AUTH indicates authenticator to use, see
-`sieve-manage-authenticators' for available authenticators.  If nil, chooses
-the best stream the server is capable of.
-Optional variable BUFFER is buffer (buffer, or string naming buffer)
+Optional argument PORT is port number (integer) on remote server.
+Optional argument STREAM is any of `sieve-manage-streams' (a symbol).
+Optional argument AUTH indicates authenticator to use, see
+`sieve-manage-authenticators' for available authenticators.
+If nil, chooses the best stream the server is capable of.
+Optional argument BUFFER is buffer (buffer, or string naming buffer)
 to work in."
   (setq buffer (or buffer (format " *sieve* %s:%d" server (or port 2000))))
   (with-current-buffer (get-buffer-create buffer)