Rename *version* to version
Since `*version*' is a constant, it should not be named as a special variable.
This commit is contained in:
parent
86aa545775
commit
54baffa58e
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ the help command."
|
||||||
(*exit-status* ,code))
|
(*exit-status* ,code))
|
||||||
,@body))
|
,@body))
|
||||||
|
|
||||||
(defconstant *version* "0.1.0"
|
(defconstant version "0.1.0"
|
||||||
"Clark's version.")
|
"Clark's version.")
|
||||||
|
|
||||||
(defun add-tags (url-or-id tags)
|
(defun add-tags (url-or-id tags)
|
||||||
|
@ -335,7 +335,7 @@ list of tags."
|
||||||
"Usage: clark version
|
"Usage: clark version
|
||||||
|
|
||||||
Print the version number and exit."
|
Print the version number and exit."
|
||||||
(format t "clark version ~A~%" *version*))
|
(format t "clark version ~A~%" version))
|
||||||
|
|
||||||
(defun clark (args)
|
(defun clark (args)
|
||||||
"Main function.
|
"Main function.
|
||||||
|
|
Loading…
Add table
Reference in a new issue