]> git.eshelyaron.com Git - emacs.git/commitdiff
project-known-roots: Rename and improve
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 26 Jun 2020 00:33:13 +0000 (03:33 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 26 Jun 2020 00:43:14 +0000 (03:43 +0300)
* lisp/progmodes/project.el (project-known-project-roots):
Rename from 'project-known-roots'.  Update the docstring.  Make
sure the returned value is a list of strings.  Update the caller
(bug#41821).

lisp/progmodes/project.el

index e1adabd2f9754e17705032c79af6110ee75cc29b..add0e592f696dbb56aa2c48eb000b3b1045791df 100644 (file)
@@ -937,10 +937,10 @@ It's also possible to enter an arbitrary directory not in the list."
       pr-dir)))
 
 ;;;###autoload
-(defun project-known-roots ()
-  "Return a list of known project roots."
+(defun project-known-project-roots ()
+  "Return the list of root directories of all known projects."
   (project--ensure-read-project-list)
-  project--list)
+  (mapcar #'car project--list))
 
 \f
 ;;; Project switching