From b22564bae8b4d7b62ff314456d55bbabfcdbed48 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 4 May 2013 09:14:04 +0100 Subject: Emacs: delete-current-buffer-file should use vc-delete-file when appropriate --- emacs/init.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'emacs/init.el') diff --git a/emacs/init.el b/emacs/init.el index 41f9821..e543b2a 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -372,9 +372,11 @@ (if (not (and filename (file-exists-p filename))) (ido-kill-buffer) (when (yes-or-no-p "Are you sure you want to remove this file? ") - (delete-file filename) - (kill-buffer buffer) - (message "File '%s' successfully removed" filename))))) + (if (vc-backend filename) + (vc-delete-file filename) + (delete-file filename) + (kill-buffer buffer) + (message "File '%s' successfully removed" filename)))))) (use-package saveplace :defer t -- cgit 1.4.1