1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-20 18:50:21 +02:00

Add lenp parameter back to scm_vector_(writable_)elements

Also fix uses.
This commit is contained in:
Daniel Llorens 2020-02-05 15:00:25 +01:00
parent 04c80519bf
commit bf5b9a86bc
5 changed files with 17 additions and 14 deletions

View file

@ -577,7 +577,7 @@ SCM_DEFINE (scm_stable_sort_x, "stable-sort!", 2, 0, 0,
}
SCM temp = scm_c_make_vector (len, SCM_UNDEFINED);
SCM *temp_elts = scm_vector_writable_elements (temp);
SCM *temp_elts = scm_vector_writable_elements (temp, NULL);
scm_merge_vector_step (vec_elts, temp_elts, less, 0, len-1, inc);