mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
nnimap.el (nnimap-wait-for-response): Fix the end-point calculation to really consider the last line.
This commit is contained in:
parent
da42072639
commit
59a7e27dd4
2 changed files with 10 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
|
||||
to really consider the last line.
|
||||
|
||||
2010-12-16 Daiki Ueno <ueno@unixuser.org>
|
||||
|
||||
* auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
|
||||
|
|
|
|||
|
|
@ -1565,10 +1565,11 @@ textual parts.")
|
|||
(format "^%d .*\n" sequence)
|
||||
(if nnimap-streaming
|
||||
(max (point-min)
|
||||
(- (point) 500)
|
||||
(save-excursion
|
||||
(forward-line -1)
|
||||
(point)))
|
||||
(min
|
||||
(- (point) 500)
|
||||
(save-excursion
|
||||
(forward-line -1)
|
||||
(point))))
|
||||
(point-min))
|
||||
t)))
|
||||
(when messagep
|
||||
|
|
|
|||
Loading…
Reference in a new issue