From 0ea1c0d831d230a8494431d168f95a72534ea2e6 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 15 Apr 2026 10:05:29 -0400 Subject: [PATCH] ; * lisp/vc/vc.el (vc-rename-file): Delete old FIXME. --- lisp/vc/vc.el | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 40544a7c578..3a7bb5b2170 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -5043,15 +5043,6 @@ If NEW is a directory name, rename FILE to a like-named file under NEW. For NEW to be recognized as a directory name, it should end in a slash. Signal a `file-already-exists' error if a file NEW already exists unless called from Lisp with optional argument OK-IF-ALREADY-EXISTS non-nil." - ;; FIXME: Support renaming whole directories. - ;; The use of `vc-call' will need to change to something like - ;; - ;; (vc-call-backend (if dir - ;; (vc-responsible-backend file) - ;; (vc-backend file)) - ;; 'rename-file old new) - ;; - ;; as was done in `vc-revert-file'; see bug#43464. --spwhitton (interactive (list (read-file-name "VC rename file: " nil (and (vc-backend buffer-file-name) buffer-file-name)