]> git.eshelyaron.com Git - emacs.git/commitdiff
project.el: Fix bug in project-ignores method for VC-aware backend
authorDamien Cassou <damien@cassou.me>
Sat, 2 Sep 2023 16:08:49 +0000 (18:08 +0200)
committerDmitry Gutov <dmitry@gutov.dev>
Sun, 3 Sep 2023 00:12:23 +0000 (03:12 +0300)
The variable `backend' was always nil preventing the 25-line long
`when' block from doing anything.  This bug was introduced in commit
785fa801596ad7bb9f838cac865f00de29e253d1 "New user option:
project-vc-extra-root-markers". (Bug#65704)

* lisp/progmodes/project.el (project-ignores): Make sure the variable
is initialized, so that backend-specific code is used if any.

lisp/progmodes/project.el

index 37db677943ac11ceaab5b179a859aa559c3f7cdb..29a81c7e151f8c7109aa73ddca19a2c6bb360753 100644 (file)
@@ -733,11 +733,10 @@ See `project-vc-extra-root-markers' for the marker value format.")
 
 (cl-defmethod project-ignores ((project (head vc)) dir)
   (let* ((root (nth 2 project))
-         backend)
+         (backend (cadr project)))
     (append
      (when (and backend
                 (file-equal-p dir root))
-       (setq backend (cadr project))
        (delq
         nil
         (mapcar