You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
QUICKPROJECT should allow users to specify "templates" for code to be generated. Current signature for the driver function looks like this:
(quickproject:make-project &key depends-on name)
The following might be preferable.
(quickproject:make-project &key depends-on name &optional (template default-template))
Or similar. A template can be a directory path, possibly inferred from QP's root directory, or current directory. Or it can be a function name or a variable, containing actual Lisp code which can generate the template.
The text was updated successfully, but these errors were encountered:
QUICKPROJECT should allow users to specify "templates" for code to be generated. Current signature for the driver function looks like this:
(quickproject:make-project &key depends-on name)
The following might be preferable.
(quickproject:make-project &key depends-on name &optional (template default-template))
Or similar. A template can be a directory path, possibly inferred from QP's root directory, or current directory. Or it can be a function name or a variable, containing actual Lisp code which can generate the template.
The text was updated successfully, but these errors were encountered: