From 920e95c0c35e32c0e497403d83bc91b70373f996 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 26 May 2006 15:21:21 +0000 Subject: [PATCH] * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument to copy-file. --- lisp/ChangeLog | 5 +++++ lisp/files.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7ebc95ccfd6..94cffb889dd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-05-26 Chong Yidong + + * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument + to copy-file. + 2006-05-26 Reiner Steib * simple.el (toggle-truncate-lines): Make arg optional for diff --git a/lisp/files.el b/lisp/files.el index 2eaeae5ac86..8ecd57a4d24 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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 -- 2.39.5