99; ;;
1010; ;; This works by keeping a cache of system file pathnames in
1111; ;; <quicklisp>/local-projects/system-index.txt. Whenever the
12- ; ;; timestamp on the local projects directory is newer than the
12+ ; ;; timestamp on a local projects directory is newer than the
1313; ;; timestamp on the system index file, the entire tree is re-scanned
1414; ;; and cached.
1515; ;;
1616; ;; This will pick up system files that are created as a result of
17- ; ;; creating new project directory in <quicklisp>/ local- projects/ ,
17+ ; ;; creating new project directory in a local projects directory ,
1818; ;; e.g. unpacking a tarball or zip file, checking out a project from
1919; ;; version control, etc. It will NOT pick up a system file that is
2020; ;; added sometime later in a subdirectory; for that, the
3333
3434(defparameter *local-project-directories*
3535 (list (qmerge " local-projects/" ))
36- " The default local projects directory ." )
36+ " The default local projects directories ." )
3737
3838(defun system-index-file (pathname )
3939 " Return the system index file for the directory PATHNAME."
@@ -102,7 +102,7 @@ SYSTEM, return its full pathname."
102102
103103(defun local-projects-searcher (system-name)
104104 " This function is added to ASDF:*SYSTEM-DEFINITION-SEARCH-FUNCTIONS*
105- to use the local project directory and cache to find systems."
105+ to use the local project directories and cache to find systems."
106106 (dolist (directory *local-project-directories* )
107107 (when (probe-directory directory )
108108 (let ((system-index (ensure-system-index directory )))
@@ -129,7 +129,7 @@ to use the local project directory and cache to find systems."
129129 result))))))))))
130130
131131(defun register-local-projects ()
132- " Force a scan of the local projects directory to create the system
132+ " Force a scan of the local projects directories to create the system
133133file index."
134134 (map nil ' make-system-index *local-project-directories* ))
135135
0 commit comments