Skip to content

Commit 8a2d660

Browse files
committed
Fix an idiot bug in binding's tests
This will be 1.2.1
1 parent 262c0d3 commit 8a2d660

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

binding.lisp

+2
Original file line numberDiff line numberDiff line change
@@ -249,11 +249,13 @@
249249
(bind/values (a b) (values 1 2))
250250
(values a b))
251251
(multiple-value-bind (a b) (values 1 2)
252+
(declare (ignore))
252253
(values a b)))
253254
((binding
254255
(bind/values (a b) 1 2)
255256
(values a b))
256257
(multiple-value-bind (a b) (values 1 2)
258+
(declare (ignore))
257259
(values a b)))
258260
((binding
259261
(bind/destructuring (a &rest b) (list 1 2))

org.tfeb.hax.asd

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(defsystem "org.tfeb.hax"
77
:description "TFEB hax"
8-
:version "1.2.0"
8+
:version "1.2.1"
99
:author "Tim Bradshaw"
1010
:license "MIT"
1111
:homepage "https://github.com/tfeb/tfeb-lisp-hax"

0 commit comments

Comments
 (0)