]> code.delx.au - gnu-emacs/commitdiff
(url-cookie-write-file): Really don't use versioned backups.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Aug 2006 14:00:27 +0000 (14:00 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Aug 2006 14:00:27 +0000 (14:00 +0000)
lisp/url/ChangeLog
lisp/url/url-cookie.el

index e4b54f9fc92a8540c89e5dfbfe3da567b7b249e7..135fdec092168cd4f01e6f66479ed5369682ac51 100644 (file)
@@ -1,3 +1,7 @@
+2006-08-29  Diane Murray  <disumu@x3y2z1.net>  (tiny change)
+
+       * url-cookie.el (url-cookie-write-file): Really don't use versioned backups.
+
 2006-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * url-handlers.el (url-file-local-copy): Tell url-copy-file that the
index e74d49891170fbd9905c4c43e283cc7662d73d51..f3902619c899e02e38a564381ed119e7c6b7323c 100644 (file)
@@ -168,11 +168,11 @@ telling Microsoft that."
       (insert ")\n(setq url-cookie-secure-storage\n '")
       (pp url-cookie-secure-storage (current-buffer))
       (insert ")\n")
-      (insert "\f;; Local Variables:\n"
+      (insert "\f\n;; Local Variables:\n"
               ";; version-control: never\n"
               ";; no-byte-compile: t\n"
               ";; End:\n")
-      (set (make-local-variable 'version-control) t)
+      (set (make-local-variable 'version-control) 'never)
       (write-file fname)
       (setq url-cookies-changed-since-last-save nil)
       (kill-buffer (current-buffer))))))