GNU bug report logs -
#7289
Tramp changes ownership of remote file when saving
Previous Next
Reported by: Jo Vermeulen <jo.vermeulen <at> gmail.com>
Date: Wed, 27 Oct 2010 10:54:03 UTC
Severity: important
Found in version 23.1
Done: Michael Albinus <michael.albinus <at> gmx.de>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> ! ;; For root, preserve owner and group when editing files.
> ! (when (string-equal (file-remote-p filename 'user) "root")
> ! (set (make-local-variable 'backup-by-copying-when-mismatch) t)
> ! (put 'backup-by-copying-when-mismatch 'permanent-local t)))
2 problems with this patch:
- (put <var> 'permanent-local t) should *never* be in such a function.
It's a top-level operation that has global effects and belongs right
next to the var's defvar.
- This makes it impossible to choose backup-by-copying-when-mismatch=nil
when accessing such remote files, whereas for local files accessed by
root a (setq backup-by-copying-when-mismatch nil) in the .emacs will
do the trick.
A simpler solution would be to change the default value of
backup-by-copying-when-mismatch to t for everyone rather than just
for root. I don't know what would the objections to this.
Stefan
This bug report was last modified 14 years and 207 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.