aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-08-30 11:10:30 +0000
committerJuanma Barranquero2002-08-30 11:10:30 +0000
commit72e97196e9085ba8d7a9af29615eec19d652fe78 (patch)
tree120e92a001bf5af859ab8ac1c97d350ed3332f3b
parent0159948239b515ed062432ec601ad1c8896953bf (diff)
downloademacs-72e97196e9085ba8d7a9af29615eec19d652fe78.tar.gz
emacs-72e97196e9085ba8d7a9af29615eec19d652fe78.zip
(imap-authenticator-alist, imap-stream-alist, imap-continuation): Fix typos.
-rw-r--r--lisp/gnus/imap.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/gnus/imap.el b/lisp/gnus/imap.el
index d46a92a0b28..0cfb90a1cd7 100644
--- a/lisp/gnus/imap.el
+++ b/lisp/gnus/imap.el
@@ -240,10 +240,10 @@ until a successful connection is made."
240 (starttls imap-starttls-p imap-starttls-open)) 240 (starttls imap-starttls-p imap-starttls-open))
241 "Definition of network streams. 241 "Definition of network streams.
242 242
243(NAME CHECK OPEN) 243\(NAME CHECK OPEN)
244 244
245NAME names the stream, CHECK is a function returning non-nil if the 245NAME names the stream, CHECK is a function returning non-nil if the
246server support the stream and OPEN is a function for opening the 246server supports the stream and OPEN is a function for opening the
247stream.") 247stream.")
248 248
249(defvar imap-authenticators '(gssapi 249(defvar imap-authenticators '(gssapi
@@ -263,11 +263,11 @@ stream.")
263 (digest-md5 imap-digest-md5-p imap-digest-md5-auth)) 263 (digest-md5 imap-digest-md5-p imap-digest-md5-auth))
264 "Definition of authenticators. 264 "Definition of authenticators.
265 265
266(NAME CHECK AUTHENTICATE) 266\(NAME CHECK AUTHENTICATE)
267 267
268NAME names the authenticator. CHECK is a function returning non-nil if 268NAME names the authenticator. CHECK is a function returning non-nil if
269the server support the authenticator and AUTHENTICATE is a function 269the server support the authenticator and AUTHENTICATE is a function
270for doing the actuall authentification.") 270for doing the actual authentication.")
271 271
272(defvar imap-use-utf7 t 272(defvar imap-use-utf7 t
273 "If non-nil, do utf7 encoding/decoding of mailbox names. 273 "If non-nil, do utf7 encoding/decoding of mailbox names.
@@ -367,7 +367,7 @@ human readable response text (a string).")
367 367
368(defvar imap-continuation nil 368(defvar imap-continuation nil
369 "Non-nil indicates that the server emitted a continuation request. 369 "Non-nil indicates that the server emitted a continuation request.
370The actually value is really the text on the continuation line.") 370The actual value is really the text on the continuation line.")
371 371
372(defvar imap-log nil 372(defvar imap-log nil
373 "Name of buffer for imap session trace. 373 "Name of buffer for imap session trace.