]> git.eshelyaron.com Git - emacs.git/commitdiff
; Add a couple of FIXMEs
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Jul 2020 21:50:32 +0000 (00:50 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 5 Jul 2020 21:51:24 +0000 (00:51 +0300)
lisp/progmodes/project.el

index 03f7c995e8508f762cc3e523cdb50072da66b18f..702e69ba539bb7084f346639a878b7cecb575c0d 100644 (file)
@@ -294,11 +294,14 @@ The directory names should be absolute.  Used in the VC project
 backend implementation of `project-external-roots'.")
 
 (defun project-try-vc (dir)
-  (let* ((backend (ignore-errors (vc-responsible-backend dir)))
+  (let* ((backend
+          ;; FIXME: This is slow. Cache it.
+          (ignore-errors (vc-responsible-backend dir)))
          (root
           (pcase backend
             ('Git
              ;; Don't stop at submodule boundary.
+             ;; FIXME: Cache for a shorter time.
              (or (vc-file-getprop dir 'project-git-root)
                  (let ((root (vc-call-backend backend 'root dir)))
                    (vc-file-setprop