diff options
author | Glenn Morris <rgm@gnu.org> | 2007-08-24 07:11:54 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-08-24 07:11:54 +0000 |
commit | d3c2b0220dd88e6ab43ae68e2bf73a241754dffc (patch) | |
tree | 794a5096a057417ca4113d498784858851f4b23f | |
parent | dadeaf0502b56335c13720412702333a7cd1113f (diff) | |
download | emacs-d3c2b0220dd88e6ab43ae68e2bf73a241754dffc.tar.gz |
(backup-buffer-copy): Fully revert change. Sigh.
-rw-r--r-- | lisp/files.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el index 84aa78b4a52..69ebf460781 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -3120,9 +3120,7 @@ BACKUPNAME is the backup file name, which is the old file renamed." (file-error nil)))))) (defun backup-buffer-copy (from-name to-name modes) - (let ((umask (default-file-modes)) - (dir (or (file-name-directory to-name) - default-directory))) + (let ((umask (default-file-modes))) (unwind-protect (progn ;; Create temp files with strict access rights. It's easy to |