fix warning on format argument
This commit is contained in:
+2
-2
@@ -123,8 +123,8 @@
|
|||||||
(format *error-output* "~&Loading ~S..." config)
|
(format *error-output* "~&Loading ~S..." config)
|
||||||
(finish-output *error-output*)
|
(finish-output *error-output*)
|
||||||
(if (null (load config :if-does-not-exist nil))
|
(if (null (load config :if-does-not-exist nil))
|
||||||
(format *error-output* " failed~%" config)
|
(format *error-output* " failed~%")
|
||||||
(format *error-output* " ok~%" config))))
|
(format *error-output* " ok~%"))))
|
||||||
|
|
||||||
(defun start (name project-root &key author (description "") license)
|
(defun start (name project-root &key author (description "") license)
|
||||||
"Creates commonly used files for a Common Lisp project from given arguments and loaded configuration. Can be called interactively by the user at the repl."
|
"Creates commonly used files for a Common Lisp project from given arguments and loaded configuration. Can be called interactively by the user at the repl."
|
||||||
|
|||||||
Reference in New Issue
Block a user