Rename *version* to version

Since `*version*' is a constant, it should not be named as a special
variable.
This commit is contained in:
Tom Willemsen 2013-04-07 03:24:08 +02:00
parent 86aa545775
commit 54baffa58e

View file

@ -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.