Squashed 'lispBM/lispBM/' changes from cb75bd53..6ec57e70

6ec57e70 fix array check in array-extensions

git-subtree-dir: lispBM/lispBM
git-subtree-split: 6ec57e700e390ba1751b69dcbc9c961b0cdb2318
This commit is contained in:
Benjamin Vedder 2023-04-04 19:38:19 +02:00
parent a2113852e9
commit 7c81f379ba
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ static lbm_value ext_str_from_n(lbm_value *args, lbm_uint argn) {
return ENC_SYM_EERROR;
}
if (argn == 2 && lbm_type_of(args[1]) != LBM_TYPE_ARRAY) {
if (argn == 2 && lbm_is_array_r(args[1])) {
return ENC_SYM_EERROR;
}