Fix off-by-one error.
authorChris Hanson <org/chris-hanson/cph>
Wed, 10 May 2000 17:23:29 +0000 (17:23 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 10 May 2000 17:23:29 +0000 (17:23 +0000)
v7/src/imail/imail-imap.scm

index 85f88d9fcca3a51cbb6112798a76eb6c5059e244..14fe0b435fae003568c221d4171629f449a6e508 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-imap.scm,v 1.26 2000/05/10 17:05:24 cph Exp $
+;;; $Id: imail-imap.scm,v 1.27 2000/05/10 17:23:29 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
       '()))
 
 (define (imap:command:store-flags connection index flags)
-  (imap:command:no-response connection 'STORE index 'FLAGS flags))
+  (imap:command:no-response connection 'STORE (+ index 1) 'FLAGS flags))
 
 (define (imap:command:expunge connection)
   ((imail-message-wrapper "Expunging messages")