]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/project.el (project-prompt-project-name): Fix order.
authorJuri Linkov <juri@linkov.net>
Mon, 10 Jul 2023 17:43:13 +0000 (20:43 +0300)
committerJuri Linkov <juri@linkov.net>
Mon, 10 Jul 2023 17:43:13 +0000 (20:43 +0300)
Reverse choices in this recently added new command to follow exactly
the same order as in the old function 'project-prompt-project-dir'.

lisp/progmodes/project.el

index 56c524bcab5082901fa0b874b2826382fa7a9c6e..1d5a5fa5c638df784c927d2a41ed47016a5efb02 100644 (file)
@@ -1679,7 +1679,8 @@ It's also possible to enter an arbitrary directory not in the list."
             ret))
          ;; XXX: Just using this for the category (for the substring
          ;; completion style).
-         (table (project--file-completion-table (cons dir-choice choices)))
+         (table (project--file-completion-table
+                 (reverse (cons dir-choice choices))))
          (pr-name ""))
     (while (equal pr-name "")
       ;; If the user simply pressed RET, do this again until they don't.