From: Chong Yidong Date: Fri, 26 May 2006 15:21:21 +0000 (+0000) Subject: * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument X-Git-Tag: emacs-pretest-22.0.90~2294 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=920e95c0c35e32c0e497403d83bc91b70373f996;p=emacs.git * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument to copy-file. --- 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