(nnimap-parse-flags): Fix typo.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 22 Sep 2010 19:34:09 +0000 (21:34 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 22 Sep 2010 19:34:09 +0000 (21:34 +0200)
lisp/ChangeLog
lisp/nnimap.el

index f920d67..3aac516 100644 (file)
@@ -6,6 +6,7 @@
        hand-parsing.
        (nnimap-flags-to-marks): Pass on permanent-flags.
        (nnimap-make-process-buffer): Record the server name.
+       (nnimap-parse-flags): Fix typo.
 
        * nnmail.el (nnmail-split-incoming): Take an optional junk-func
        parameter, and propagate this downwards.
index cef88fe..e432046 100644 (file)
@@ -844,7 +844,7 @@ not done by default on servers that doesn't support that command.")
       (push (list group info active) nnimap-current-infos))))
 
 (defun nnimap-flags-to-marks (groups)
-  (let (data group totalp uidnext articles start-article mark)
+  (let (data group totalp uidnext articles start-article mark permanent-flags)
     (dolist (elem groups)
       (setq group (car elem)
            uidnext (nth 1 elem)
@@ -881,7 +881,7 @@ not done by default on servers that doesn't support that command.")
                     (forward-line 1)
                     (setq end (point))
                     (goto-char start)
-                    (setq permanent-forward
+                    (setq permanent-flags
                           (and (search-forward "PERMANENTFLAGS "
                                                 (or end (point-min)) t)
                                (read (current-buffer))))