emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102522: nnimap.el (nnimap-request-se


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102522: nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
Date: Fri, 26 Nov 2010 02:17:55 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102522
author: Lars Magne Ingebrigtsen <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Fri 2010-11-26 02:17:55 +0000
message:
  nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/nnimap.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-11-26 02:11:40 +0000
+++ b/lisp/gnus/ChangeLog       2010-11-26 02:17:55 +0000
@@ -1,5 +1,7 @@
 2010-11-26  Lars Magne Ingebrigtsen  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/gnus/nnimap.el'
--- a/lisp/gnus/nnimap.el       2010-11-26 02:11:40 +0000
+++ b/lisp/gnus/nnimap.el       2010-11-26 02:17:55 +0000
@@ -928,6 +928,7 @@
     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 @@
                                (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]