diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2010-11-21 20:39:21 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2010-11-21 20:39:21 +0100 |
commit | e274eb13e0bbe9d200aa813b7ec3ef559f76405c (patch) | |
tree | a52b1b664b002eef628fcbb077905b44af931151 /lisp/startup.el | |
parent | 77af54d7c2d9e1ebcbbe1dffec4004b7079ce6bf (diff) | |
download | emacs-e274eb13e0bbe9d200aa813b7ec3ef559f76405c.tar.gz |
* files.el (backup-by-copying-when-mismatch): The default value is
now t.
* startup.el (normal-top-level):
* net/tramp.el (tramp-handle-insert-file-contents): Do not set
`backup-by-copying-when-mismatch'.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 8dd76b29741..99189b1df72 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -466,9 +466,6 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." ;; `user-full-name' is now known; reset its standard-value here. (put 'user-full-name 'standard-value (list (default-value 'user-full-name))) - ;; For root, preserve owner and group when editing files. - (if (equal (user-uid) 0) - (setq backup-by-copying-when-mismatch t)) ;; Look in each dir in load-path for a subdirs.el file. ;; If we find one, load it, which will add the appropriate subdirs ;; of that dir into load-path, |