lovrolu

Results 6 issues of lovrolu

The following two forms give different results: ```lisp (let* ((arr (make-array '(2 2) :initial-contents (list (list (v!uint 1 2 3 4) (v!uint 1 2 3 4)) (list (v!uint 1 2...

It seems that `M*` always multiplies vectors as if they were on the right-hand side. The following: ```lisp (let ((vec (vec4 1 2 3 4)) (mat (mat4 '(1 2 3...

`(n*m mat1 mat2 vec)` modifies both `mat2` and `vec` instead of just `vec`. ``` (let ((mat1 (mat 1 0 0 2)) (mat2 (mat 6 0 0 6)) (vec (vec 10...

The bug occurs in the general version of `MDET`. I've used `%MATN` and `%PROPER-ARRAY` to force the creation of a `MATN` (instead of a `MAT3` that I would get using...

Currently the `MATN` function tries to be clever and construct one of `MAT{2,3,4}` when it detects those dimensions. This is ok by itself, however, the general versions of every (?)...

Currently `org-vcard-export` and `org-vcard-import` know not to prompt the user for the version/language/style depending on the prefix argument. However, they still unconditionally prompt for the source and destination. Similary, `org-vcard-transfer-helper`,...