diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2020-02-26 17:10:21 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2020-02-26 17:10:48 -0800 |
commit | 07da629926daf849aab248175c88cf53a5e21558 (patch) | |
tree | a2d84bbae86d34d0ee4c9d9e535ff5aef2aee5bc /lisp/gnus/nndiary.el | |
parent | 3766bf728a43933083f4525970bcf9fdace3838d (diff) | |
download | emacs-07da629926daf849aab248175c88cf53a5e21558.tar.gz emacs-07da629926daf849aab248175c88cf53a5e21558.tar.bz2 emacs-07da629926daf849aab248175c88cf53a5e21558.zip |
nnmail-cache-close should not use nofollow
nnmail-cache-close did not work when ~/.nnmail-cache was a symlink
to some other directory. Reported by Michael Albinus (Bug#39793).
* lisp/gnus/nnbabyl.el (nnbabyl-create-mbox):
* lisp/gnus/nndiary.el (nndiary-generate-nov-file):
* lisp/gnus/nnfolder.el (nnfolder-possibly-change-group):
* lisp/gnus/nnmbox.el (nnmbox-create-mbox):
* lisp/gnus/nnml.el (nnml-generate-nov-file):
Pass ‘excl’ to nnmail-write-region when creating a file, for safety.
* lisp/gnus/nnmail.el (nnmail-write-region):
Add optional MUSTBENEW arg, to stay consistent with write-region.
Past ‘nofollow’ to set-file-modes only when MUSTBENEW is ‘excl’.
Diffstat (limited to 'lisp/gnus/nndiary.el')
-rw-r--r-- | lisp/gnus/nndiary.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el index ac394ae53d7..945ef0351e5 100644 --- a/lisp/gnus/nndiary.el +++ b/lisp/gnus/nndiary.el @@ -1115,7 +1115,7 @@ all. This may very well take some time.") (widen)) (setq files (cdr files))) (with-current-buffer nov-buffer - (nnmail-write-region 1 (point-max) nov nil 'nomesg) + (nnmail-write-region 1 (point-max) nov nil 'nomesg nil 'excl) (kill-buffer (current-buffer)))))) (defun nndiary-nov-delete-article (group article) |