diff options
| author | Eric Abrahamsen <eric@ericabrahamsen.net> | 2019-07-22 10:00:06 -0700 |
|---|---|---|
| committer | Eric Abrahamsen <eric@ericabrahamsen.net> | 2019-07-22 12:50:33 -0700 |
| commit | b904a238a5ab759a4d0d8c9ee5c48199febd8f62 (patch) | |
| tree | 3e8e9fa61fe4548ec45530ea755473dfa875565b /lisp | |
| parent | 33ed5718083333d4c74d49a57e627c29918dbed2 (diff) | |
| download | emacs-b904a238a5ab759a4d0d8c9ee5c48199febd8f62.tar.gz | |
Adjust regexp for parsing IMAP header response
* lisp/gnus/nnimap.el (nnimap-transform-headers): The first header
might have no value, or a continuation header might start with a
newline.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 49b997cb0b8..ad2b1a4fb63 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -270,7 +270,7 @@ textual parts.") (forward-line) (null (looking-at-p ;; We're expecting a mail header. - "^[!-9;-~]+: ")))) + "^[!-9;-~]+:[[:space:]]")))) (delete-region (line-beginning-position) (1+ (line-end-position))) (setq lines nil) |
