mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 07:30:32 +02:00
Attempt to mutate residualized literal pair throws exception
* libguile/validate.h (SCM_VALIDATE_MUTABLE_PAIR): * libguile/pairs.h (scm_is_mutable_pair): New internal definitions. * libguile/pairs.c (scm_set_car_x, scm_set_cdr_x): Validate mutable pairs. * libguile/alist.c (scm_assq_set_x, scm_assv_set_x, scm_assoc_set_x): * libguile/list.c (scm_reverse_x, scm_list_set_x, scm_list_cdr_set_x): * libguile/srcprop.c (scm_make_srcprops): * libguile/srfi-1.c (scm_srfi1_append_reverse_x) (scm_srfi1_delete_duplicates_x): * libguile/symbols.c (scm_symbol_fset_x, scm_symbol_pset_x): * libguile/sort.c (scm_merge_list_x): Use scm_set_car_x / scm_set_cdr_x instead of the macros, so as to check for mutable pairs. (SCM_VALIDATE_MUTABLE_LIST): New internal helper macro. (scm_sort_x, scm_stable_sort_x, scm_sort_list_x): Use SCM_VALIDATE_MUTABLE_LIST. * libguile/vm-engine.c (VM_VALIDATE_MUTABLE_PAIR): New definition. (set-car!, set-cdr!): Use VM_VALIDATE_MUTABLE_PAIR. Fix error message for set-cdr!.
This commit is contained in:
parent
d7778b3d6a
commit
6e573a0885
11 changed files with 63 additions and 21 deletions
|
@ -119,7 +119,7 @@ SCM_DEFINE (scm_srfi1_append_reverse_x, "append-reverse!", 2, 0, 0,
|
|||
{
|
||||
SCM newtail;
|
||||
|
||||
while (scm_is_pair (revhead))
|
||||
while (scm_is_mutable_pair (revhead))
|
||||
{
|
||||
/* take the first cons cell from revhead */
|
||||
newtail = revhead;
|
||||
|
@ -548,7 +548,7 @@ SCM_DEFINE (scm_srfi1_delete_duplicates_x, "delete-duplicates!", 1, 1, 0,
|
|||
if (scm_is_eq (l, endret))
|
||||
{
|
||||
/* not equal to any, so append this pair */
|
||||
SCM_SETCDR (endret, lst);
|
||||
scm_set_cdr_x (endret, lst);
|
||||
endret = lst;
|
||||
break;
|
||||
}
|
||||
|
@ -557,7 +557,7 @@ SCM_DEFINE (scm_srfi1_delete_duplicates_x, "delete-duplicates!", 1, 1, 0,
|
|||
}
|
||||
|
||||
/* terminate, in case last element was deleted */
|
||||
SCM_SETCDR (endret, SCM_EOL);
|
||||
scm_set_cdr_x (endret, SCM_EOL);
|
||||
}
|
||||
|
||||
/* demand that lst was a proper list */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue