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))
|
||||
,@body))
|
||||
|
||||
(defconstant *version* "0.1.0"
|
||||
(defconstant version "0.1.0"
|
||||
"Clark's version.")
|
||||
|
||||
(defun add-tags (url-or-id tags)
|
||||
|
@ -335,7 +335,7 @@ list of tags."
|
|||
"Usage: clark version
|
||||
|
||||
Print the version number and exit."
|
||||
(format t "clark version ~A~%" *version*))
|
||||
(format t "clark version ~A~%" version))
|
||||
|
||||
(defun clark (args)
|
||||
"Main function.
|
||||
|
|
Loading…
Reference in a new issue