]> git.eshelyaron.com Git - emacs.git/commitdiff
; Add a note about a bottleneck
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 6 Jul 2020 00:50:59 +0000 (03:50 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 6 Jul 2020 00:50:59 +0000 (03:50 +0300)
lisp/progmodes/project.el

index 08798d86f8ea4491bd39deaf1e739afc6823bf61..188236427da422ea55c05ba0351d8d9b9eb0cfc9 100644 (file)
@@ -396,6 +396,8 @@ backend implementation of `project-external-roots'.")
        (setq files
              (mapcar
               (lambda (file) (concat default-directory file))
+              ;; XXX: With large enough project, split-string becomes
+              ;; one of the bottlenecks.
               (split-string
                (apply #'vc-git--run-command-string nil "ls-files" args)
                "\0" t)))