* files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
to copy-file.
This commit is contained in:
parent
795c20df7a
commit
920e95c0c3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-26 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
|
||||
to copy-file.
|
||||
|
||||
2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* simple.el (toggle-truncate-lines): Make arg optional for
|
||||
|
|
|
@ -2994,7 +2994,7 @@ BACKUPNAME is the backup file name, which is the old file renamed."
|
|||
(condition-case nil
|
||||
(delete-file to-name)
|
||||
(file-error nil))
|
||||
(copy-file from-name to-name t t 'excl)
|
||||
(copy-file from-name to-name nil t)
|
||||
nil)
|
||||
(file-already-exists t))
|
||||
;; The file was somehow created by someone else between
|
||||
|
|
Loading…
Add table
Reference in a new issue