diff options
| author | Lars Ingebrigtsen | 2012-02-07 03:26:08 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-02-07 03:26:08 +0000 |
| commit | 1f0f21c51107e8a2d6e223840018dfdf3dbafee2 (patch) | |
| tree | 9c583643a03d1d59f835688656720a64b495b98f | |
| parent | 827235c3cef884d38353c789c60543df2af27ee7 (diff) | |
| download | emacs-1f0f21c51107e8a2d6e223840018dfdf3dbafee2.tar.gz emacs-1f0f21c51107e8a2d6e223840018dfdf3dbafee2.zip | |
nnimap.el: Fix XEmacs 21.4 build failure from the last change
| -rw-r--r-- | lisp/gnus/nnimap.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index c5b77dbef4a..4c75f721ff6 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -208,8 +208,7 @@ textual parts.") | |||
| 208 | (delete-region (+ (match-beginning 0) 2) (point)) | 208 | (delete-region (+ (match-beginning 0) 2) (point)) |
| 209 | (setq string (buffer-substring (point) (+ (point) size))) | 209 | (setq string (buffer-substring (point) (+ (point) size))) |
| 210 | (delete-region (point) (+ (point) size)) | 210 | (delete-region (point) (+ (point) size)) |
| 211 | (insert (format "%S" (subst-char-in-string | 211 | (insert (format "%S" (mm-subst-char-in-string ?\n ?\s string)))) |
| 212 | ?\n ?\s string)))) | ||
| 213 | (beginning-of-line) | 212 | (beginning-of-line) |
| 214 | (setq article | 213 | (setq article |
| 215 | (and (re-search-forward "UID \\([0-9]+\\)" (line-end-position) | 214 | (and (re-search-forward "UID \\([0-9]+\\)" (line-end-position) |