]> git.eshelyaron.com Git - emacs.git/commitdiff
Make sure to return some valid project root
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 13 Sep 2021 21:53:05 +0000 (00:53 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 13 Sep 2021 21:53:05 +0000 (00:53 +0300)
* lisp/progmodes/project.el (project-prompt-project-dir):
If the user just pressed RET on prompt, prompt again.

lisp/progmodes/project.el

index ba95ed094edf207be08834a11a2a4b257a372a67..d034443907df3b885b8c9d870eb67344846fe09c 100644 (file)
@@ -1308,7 +1308,10 @@ It's also possible to enter an arbitrary directory not in the list."
           ;; completion style).
           (project--file-completion-table
            (append project--list `(,dir-choice))))
-         (pr-dir (completing-read "Select project: " choices nil t)))
+         (pr-dir ""))
+    (while (equal pr-dir "")
+      ;; If the user simply pressed RET, do this again until they don't.
+      (setq pr-dir (completing-read "Select project: " choices nil t)))
     (if (equal pr-dir dir-choice)
         (read-directory-name "Select directory: " default-directory nil t)
       pr-dir)))