diff options
| author | Michael Olson | 2009-01-04 00:03:05 +0000 |
|---|---|---|
| committer | Michael Olson | 2009-01-04 00:03:05 +0000 |
| commit | 9b2bac7163fef73662e0e854eb880fc89fef08d3 (patch) | |
| tree | c519f95247abb50b796e707580e602626c63af2e /lisp/net | |
| parent | bd7101497913c5bb68e4cf2d6bad86053c2d679c (diff) | |
| download | emacs-9b2bac7163fef73662e0e854eb880fc89fef08d3.tar.gz emacs-9b2bac7163fef73662e0e854eb880fc89fef08d3.zip | |
Gnus: Add explanations for recent changes to the code itself.
These are already documented in ChangeLog.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/imap.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/net/imap.el b/lisp/net/imap.el index 85afffc100b..8cb248aa513 100644 --- a/lisp/net/imap.el +++ b/lisp/net/imap.el | |||
| @@ -2493,6 +2493,8 @@ Return nil if no complete line has arrived." | |||
| 2493 | (when (eq (char-after) ?\() | 2493 | (when (eq (char-after) ?\() |
| 2494 | (let (uid flags envelope internaldate rfc822 rfc822header rfc822text | 2494 | (let (uid flags envelope internaldate rfc822 rfc822header rfc822text |
| 2495 | rfc822size body bodydetail bodystructure flags-empty) | 2495 | rfc822size body bodydetail bodystructure flags-empty) |
| 2496 | ;; Courier can insert spurious blank characters which will | ||
| 2497 | ;; confuse `read', so skip past them. | ||
| 2496 | (while (let ((moved (skip-chars-forward " \t"))) | 2498 | (while (let ((moved (skip-chars-forward " \t"))) |
| 2497 | (prog1 (not (eq (char-after) ?\))) | 2499 | (prog1 (not (eq (char-after) ?\))) |
| 2498 | (unless (= moved 0) (backward-char)))) | 2500 | (unless (= moved 0) (backward-char)))) |