chiark / gitweb /
src/c-types-parse.lisp: Cope if `*module-type-map*' is unbound.
[sod] / src / c-types-parse.lisp
index 53fc8118c1f7cfb38a3cf93e4b237b4f527a349b..15d942a5b3c6b2d711069e5ab6553ec877e66f58 100644 (file)
@@ -240,7 +240,8 @@ (defun scan-declspec
   ;; Turns out to be easier to do this by hand.
   (let ((ds (and (eq (token-type scanner) :id)
                 (let ((kw (token-value scanner)))
-                  (or (gethash kw *module-type-map*)
+                  (or (and (boundp '*module-type-map*)
+                           (gethash kw *module-type-map*))
                       (gethash kw *declspec-map*))))))
     (cond ((or (not ds) (and predicate (not (funcall predicate ds))))
           (values (list indicator) nil nil))