]> git.eshelyaron.com Git - emacs.git/commitdiff
* gnus-group.el (gnus-import-other-newsrc-file): Use insert-file-contents.
authorGlenn Morris <rgm@gnu.org>
Tue, 17 May 2011 02:32:50 +0000 (19:32 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 17 May 2011 02:32:50 +0000 (19:32 -0700)
lisp/gnus/ChangeLog
lisp/gnus/gnus-group.el

index 57f74d40abfd1b3ba24a79005d4bee42ed2719ac..068093159e3a332b6bf74c6a9a1b34514870da6d 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-17  Glenn Morris  <rgm@gnu.org>
+
+       * gnus-group.el (gnus-import-other-newsrc-file):
+       Use insert-file-contents.
+
 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
index c265538e19cbd69f8227bb740d00e43e1965f9fa..a21faa8c983c1c449459972ad2cad0ce2929b4c1 100644 (file)
@@ -4407,7 +4407,7 @@ and the second element is the address."
 ;; file.  Use with caution, if at all.
 (defun gnus-import-other-newsrc-file (file)
   (with-temp-buffer
-    (insert-file file)
+    (insert-file-contents file)
     (let (form)
       (while (ignore-errors
               (setq form (read (current-buffer))))