Skip to content
Snippets Groups Projects
Commit ff0a4669 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Include feedback from Zach re: source-file-type.

parent 685547b7
No related branches found
No related tags found
No related merge requests found
......@@ -3140,6 +3140,15 @@ initform for the @code{type} slot:
((type :initform "cl")))
@end lisp
To support both ASDF 1 and ASDF 2,
you may omit the above @code{type} slot definition and instead define:
@lisp
(defmethod source-file-type ((f my-cl-source-file) (m module))
(declare (ignorable f m))
"cl")
@end lisp
Then make your system use this subclass in preference to the standard
one:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment