]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor bug fixes for gnus-sync.el.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 13 Aug 2010 10:54:05 +0000 (10:54 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 13 Aug 2010 10:54:05 +0000 (10:54 +0000)
From Ted Zlatanov <tzz@lifelogs.com>.

* gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
quiet.

* gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).

lisp/gnus/ChangeLog
lisp/gnus/gnus-sync.el

index ead4a7fe7e8fe0a61c235ec3c7342a553c155d59..9a5bd7bc144c3405460c1fc16b5af2c2b990ec0a 100644 (file)
@@ -1,3 +1,12 @@
+2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       Minor bug fixes for gnus-sync.el.
+
+       * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
+       quiet.
+
+       * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
+
 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
 
        Make saving and restoring of hidden threads work with overlays.
index 1bf0740964882b44595b44348493910fc51131ad..153217ef38c92772f8bb6feacd22cc74243106f5 100644 (file)
@@ -118,7 +118,8 @@ synchronized, I believe).  Also see `gnus-variable-list'."
                    (print-circle nil)
                    (print-escape-newlines t)
                    (variables (cons 'gnus-sync-newsrc-loader
-                                    gnus-sync-global-vars)))
+                                    gnus-sync-global-vars))
+                   variable)
               (while variables
                 (when (and (boundp (setq variable (pop variables)))
                            (symbol-value variable))
@@ -179,7 +180,7 @@ synchronized, I believe).  Also see `gnus-variable-list'."
            (setq gnus-sync-newsrc-loader nil)))
           (nil))
     ;; make the hashtable again because the newsrc-alist may have been modified
-    (when gnus-sync-newsrc-vars
+    (when gnus-sync-newsrc-offsets
       (gnus-message 9 "gnus-sync: remaking the newsrc hashtable")
       (gnus-make-hashtable-from-newsrc-alist))))