Raymond Toy pushed to branch issue-113-prefer-cmucl-modules at cmucl / cmucl
Commits: d6a962a6 by Raymond Toy at 2021-08-31T13:40:23-07:00 Forgot to remove the cmucl functions from module-provider-functions
Since we added `*cmucl-provider-functions*`, all of the cmucl providers should be removed from `*module-provider-functions*`.
- - - - -
1 changed file:
- src/code/module.lisp
Changes:
===================================== src/code/module.lisp ===================================== @@ -43,7 +43,7 @@ searched first before trying *module-provider-functions*")
(defvar *module-provider-functions* - '(module-provide-cmucl-defmodule module-provide-cmucl-library) + nil "See function documentation for REQUIRE")
;;;; Defmodule.
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d6a962a68e730ad3b1974f58...