Skip to content

Commit 96e0a7b

Browse files
committed
Introduce QLQS-INFO:*VERSION*.
1 parent 31e6e66 commit 96e0a7b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

quicklisp.lisp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
(:use #:cl))
2020
(cl:in-package #:qlqs-user)
2121

22+
(defpackage #:qlqs-info
23+
(:export #:*version*))
24+
25+
(defvar qlqs-info:*version* "2014-01-28")
26+
2227
(defpackage #:qlqs-impl
2328
(:use #:cl)
2429
(:export #:*implementation*)
@@ -968,7 +973,8 @@
968973
(format nil ":~D" port)))
969974
(add-line "Connection: close")
970975
;; FIXME: get this version string from somewhere else.
971-
(add-line "User-Agent: quicklisp-bootstrap/2014-01-28")
976+
(add-line "User-Agent: quicklisp-bootstrap/"
977+
qlqs-info:*version*)
972978
(add-newline sink)
973979
(sink-buffer sink))))
974980

0 commit comments

Comments
 (0)