Adds support for TAGS in noweb files. I really don't know whether the above is complete or not.
10 lines
321 B
Common Lisp
10 lines
321 B
Common Lisp
#-quicklisp
|
|
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
|
(user-homedir-pathname))))
|
|
(when (probe-file quicklisp-init)
|
|
(load quicklisp-init)))
|
|
(ql:quickload :loop :silent t)
|
|
(in-package #:loop)
|
|
(drop-create-index!)
|
|
(index-from-fs!)
|
|
(format t "Index built.~%")
|