diff options
| author | 2013-06-04 01:16:30 +0200 | |
|---|---|---|
| committer | 2013-06-04 01:16:30 +0200 | |
| commit | 2ddf0ce51c6e54754c69ab6f019c12867817adfc (patch) | |
| tree | 208eb43d7a18141347ef17e9b474fe8b32e7f452 | |
| parent | 7fd20d720daef154214fdc49577ba73b3db1790b (diff) | |
| download | clark-2ddf0ce51c6e54754c69ab6f019c12867817adfc.tar.gz clark-2ddf0ce51c6e54754c69ab6f019c12867817adfc.zip | |
Use parameter instead of constant for version
The `defconstant' form generates an error when compiling, that the value
is not `eq' to the previous value.
| -rw-r--r-- | lisp/clark.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/clark.lisp b/lisp/clark.lisp index 64cf477..bb28bb3 100644 --- a/lisp/clark.lisp +++ b/lisp/clark.lisp @@ -70,7 +70,7 @@ the help command." (*exit-status* ,code)) ,@body)) -(defconstant version "0.1.1" +(defparameter version "0.1.1" "Clark's version.") (defun add-tags (url-or-id tags) |
