mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
This commit is contained in:
parent
5f285722b6
commit
57cc52bed4
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2010-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
|
||||
|
||||
* gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
|
||||
'add and 'delete to set backend marks.
|
||||
|
||||
|
|
|
|||
|
|
@ -928,6 +928,7 @@ textual parts.")
|
|||
flags))
|
||||
|
||||
(deffoo nnimap-request-set-mark (group actions &optional server)
|
||||
(debug)
|
||||
(when (nnimap-possibly-change-group group server)
|
||||
(let (sequence)
|
||||
(with-current-buffer (nnimap-buffer)
|
||||
|
|
@ -943,7 +944,7 @@ textual parts.")
|
|||
(nnimap-article-ranges range)
|
||||
(cond
|
||||
((eq action 'del) "-")
|
||||
((eq action 'add) "-")
|
||||
((eq action 'add) "+")
|
||||
((eq action 'set) ""))
|
||||
(mapconcat #'identity flags " ")))))))
|
||||
;; Wait for the last command to complete to avoid later
|
||||
|
|
|
|||
Loading…
Reference in a new issue