From: Richard M. Stallman Date: Sat, 3 Feb 1996 17:49:44 +0000 (+0000) Subject: (gnus-gnus-to-newsrc-format): Turn off version-control X-Git-Tag: emacs-19.34~1383 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e9110dc5c5348f40e8440bbac43690f4e234b797;p=emacs.git (gnus-gnus-to-newsrc-format): Turn off version-control before saving the .newsrc files. --- diff --git a/lisp/gnus.el b/lisp/gnus.el index ee9e648b7c1..299abcb257e 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -13411,6 +13411,8 @@ If FORCE is non-nil, the .newsrc file is read." 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 FORCE is non-nil, the .newsrc file is read." (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,