* 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).
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