We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e6e66 commit 96e0a7bCopy full SHA for 96e0a7b
quicklisp.lisp
@@ -19,6 +19,11 @@
19
(:use #:cl))
20
(cl:in-package #:qlqs-user)
21
22
+(defpackage #:qlqs-info
23
+ (:export #:*version*))
24
+
25
+(defvar qlqs-info:*version* "2014-01-28")
26
27
(defpackage #:qlqs-impl
28
(:use #:cl)
29
(:export #:*implementation*)
@@ -968,7 +973,8 @@
968
973
(format nil ":~D" port)))
969
974
(add-line "Connection: close")
970
975
;; 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*)
972
978
(add-newline sink)
979
(sink-buffer sink))))
980
0 commit comments