We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9377247 commit 9c35fc9Copy full SHA for 9c35fc9
api-server.lisp
@@ -10,7 +10,7 @@
10
11
(defparameter *index* (make-instance 'montezuma:index
12
:path "/home/marian/src/quicklisp-docs-index"
13
- ))
+ :create-if-missing-p nil))
14
15
(defun parse-document (doc)
16
(flet ((docvalue (field)
quicklisp-apropos.lisp
@@ -21,7 +21,8 @@
21
22
(defun ensure-index ()
23
(when (null *index*)
24
- (setf *index* (make-instance 'montezuma:index :path *index-path*))))
+ (setf *index* (make-instance 'montezuma:index :path *index-path*
25
+ :create-if-missing-p nil))))
26
27
(defun format-query (query)
28
(when (stringp query)
0 commit comments