]> git.eshelyaron.com Git - emacs.git/commitdiff
project-prompt-project-dir: Use more consistent prompts
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 29 May 2020 18:37:12 +0000 (21:37 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 29 May 2020 18:37:12 +0000 (21:37 +0300)
* lisp/progmodes/project.el (project-prompt-project-dir):
Use more consistent prompts.

lisp/progmodes/project.el

index 92293d0e2d7d764289b09f26a8b111d5815c22e0..1f2a4e84718d2aa7674524fc36529ea8fb35282e 100644 (file)
@@ -783,9 +783,9 @@ It's also possible to enter an arbitrary directory."
           ;; completion style).
           (project--file-completion-table
            (append project--list `(,dir-choice))))
-         (pr-dir (completing-read "Project: " choices nil t)))
+         (pr-dir (completing-read "Select project: " choices nil t)))
     (if (equal pr-dir dir-choice)
-        (read-directory-name "Choose directory: " default-directory nil t)
+        (read-directory-name "Select directory: " default-directory nil t)
       pr-dir)))
 
 \f