diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/vc/vc-bzr.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 00a105b5142..6ba1ace546a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-03-28 Leo Liu <sdl.web@gmail.com> + + * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066) + 2013-03-27 Eli Zaretskii <eliz@gnu.org> * facemenu.el (list-colors-callback): New defvar. diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index d0912cb719c..d72c1f7f859 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el @@ -653,7 +653,7 @@ REV non-nil gets an error." (defun vc-bzr-revert (file &optional contents-done) (unless contents-done - (with-temp-buffer (vc-bzr-command "revert" t 0 file)))) + (with-temp-buffer (vc-bzr-command "revert" t 0 file "--no-backup")))) (defvar log-view-message-re) (defvar log-view-file-re) |