summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-07-02 13:17:41 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-07-02 13:17:41 +0000
commit56fd9faa2f35556996de5777734663de5ad235e3 (patch)
tree1e3feb70cf23747e031e82fbd3e3eaf3209b1947
parent1f8da6df7d15ee9eb08329526158926f459eee79 (diff)
downloademacs-56fd9faa2f35556996de5777734663de5ad235e3.tar.gz
* nnimap.el (nnimap-id):
* sieve-manage.el (sieve-manage-open): Doc fixes.
-rw-r--r--lisp/gnus/ChangeLog7
-rw-r--r--lisp/gnus/nnimap.el4
-rw-r--r--lisp/gnus/sieve-manage.el12
3 files changed, 14 insertions, 9 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 10fb4e2e928..ab38653fd5d 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -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,
@@ -9795,7 +9800,7 @@
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.)
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el
index 8a9d5c706fe..49166b8de82 100644
--- a/lisp/gnus/nnimap.el
+++ b/lisp/gnus/nnimap.el
@@ -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
diff --git a/lisp/gnus/sieve-manage.el b/lisp/gnus/sieve-manage.el
index 38fece27a87..513aa9fc05d 100644
--- a/lisp/gnus/sieve-manage.el
+++ b/lisp/gnus/sieve-manage.el
@@ -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)