Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
inconvergent committed Jun 25, 2023
1 parent 1cf5088 commit d3b64d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lets.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ ex: (~a (fx)) corresponds to (values (fx) ...)." dim mname)))
`(progn (map-docstring ',mname ,docs :nodesc :context)
(map-symbol `(,',mname (expr) ,,docs
`(values ,@(loop repeat ',',dim
collect expr of-type ',',type)))))))
collect expr)))))))
(defmacro define-val (dim type)
(awg (e)
(let* ((mname (vvsym type dim "val"))
Expand Down
4 changes: 2 additions & 2 deletions veq.asd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:description "reasonably fast operations for 1-4d vectors, matrices, and
arrays of vectors."
:author "anders hoff / @inconvergent / inconvergent@gmail.com"
:version "4.5.4" :licence "MIT"
:version "4.5.5" :licence "MIT"
:in-order-to ((asdf:test-op (asdf:test-op #:veq/tests)))
:pathname "src/" :serial nil
:depends-on (#+SBCL #:sb-cltl2)
Expand Down Expand Up @@ -44,7 +44,7 @@ arrays of vectors."

(asdf:defsystem #:veq/tests
:depends-on (#:veq #:prove #:asdf #:uiop)
:version "4.5.4"
:version "4.5.5"
:perform (asdf:test-op (o s) (uiop:symbol-call ':veq-tests '#:run-tests))
:pathname "test/" :serial t
:components ((:file "run")))
Expand Down

0 comments on commit d3b64d1

Please sign in to comment.