diff options
| author | Juanma Barranquero | 2002-08-30 11:10:30 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-08-30 11:10:30 +0000 |
| commit | 72e97196e9085ba8d7a9af29615eec19d652fe78 (patch) | |
| tree | 120e92a001bf5af859ab8ac1c97d350ed3332f3b | |
| parent | 0159948239b515ed062432ec601ad1c8896953bf (diff) | |
| download | emacs-72e97196e9085ba8d7a9af29615eec19d652fe78.tar.gz emacs-72e97196e9085ba8d7a9af29615eec19d652fe78.zip | |
(imap-authenticator-alist, imap-stream-alist, imap-continuation): Fix typos.
| -rw-r--r-- | lisp/gnus/imap.el | 10 |
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 | ||
| 245 | NAME names the stream, CHECK is a function returning non-nil if the | 245 | NAME names the stream, CHECK is a function returning non-nil if the |
| 246 | server support the stream and OPEN is a function for opening the | 246 | server supports the stream and OPEN is a function for opening the |
| 247 | stream.") | 247 | stream.") |
| 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 | ||
| 268 | NAME names the authenticator. CHECK is a function returning non-nil if | 268 | NAME names the authenticator. CHECK is a function returning non-nil if |
| 269 | the server support the authenticator and AUTHENTICATE is a function | 269 | the server support the authenticator and AUTHENTICATE is a function |
| 270 | for doing the actuall authentification.") | 270 | for 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. |
| 370 | The actually value is really the text on the continuation line.") | 370 | The 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. |