# HG changeset patch # User Richard M. Stallman # Date 823369784 0 # Node ID 7da7619a61508f2d871e9c0357ec5e3b42e0bb67 # Parent 63540fa4367450c3d45f6ee717e69584b04c7d6c (gnus-gnus-to-newsrc-format): Turn off version-control before saving the .newsrc files. diff -r 63540fa43674 -r 7da7619a6150 lisp/gnus.el --- a/lisp/gnus.el Sat Feb 03 13:38:32 1996 +0000 +++ b/lisp/gnus.el Sat Feb 03 17:49:44 1996 +0000 @@ -13411,6 +13411,8 @@ gnus-current-startup-file))) ;; Quickly loadable .newsrc. (set-buffer (get-buffer-create " *Gnus-newsrc*")) + (make-local-variable 'version-control) + (setq version-control 'never) (setq buffer-file-name (concat gnus-current-startup-file ".eld")) (gnus-add-current-to-buffer-list) (buffer-disable-undo (current-buffer)) @@ -13485,6 +13487,8 @@ (if ranges (insert ",")))))) (insert "\n"))) (setq newsrc (cdr newsrc))) + (make-local-variable 'version-control) + (setq version-control 'never) ;; It has been reported that sometime the modtime on the .newsrc ;; file seems to be off. We really do want to overwrite it, so ;; we clear the modtime here before saving. It's a bit odd,