@@ -29,7 +29,7 @@ Error, no 1st choice method found for `IsBound[]' on 2 arguments
2929
3030#
3131gap> UNB_LIST(1 ,2 );
32- Error, Unbind : < list> must be a list ( not the integer 1 )
32+ Error, List Unbind : < list> must be a mutable list
3333gap> UNB_LIST([ 1 ] ,1 );
3434gap> UNB_LIST([ 1 ] ,2 );
3535
@@ -79,7 +79,7 @@ gap> ELMS_LIST_DEFAULT([1,2,3],[1..2]);
7979
8080#
8181gap> ASS_LIST(1 ,1 ,1 );
82- Error, List Assignments : < list> must be a list ( not the integer 1 )
82+ Error, List Assignment : < list> must be a mutable list
8383gap> l:= [] ;; ASS_LIST(l,1 ,1 ); l;
8484[ 1 ]
8585
@@ -89,7 +89,7 @@ Error, List Assignments: <rhss> must be a dense list (not the integer 1)
8989gap> ASSS_LIST([ 1 ] ,1 ,[ 1 ] );
9090Error, List Assignments: < poss> must be a dense list of positive integers
9191gap> ASSS_LIST(1 ,[ 1 ] ,[ 1 ] );
92- Error, List Assignments: < list> must be a list ( not the integer 1 )
92+ Error, List Assignments: < list> must be a mutable list
9393gap> l:= [] ;; ASSS_LIST(l,[ 1 ] ,[ 1 ] ); l;
9494[ 1 ]
9595
@@ -99,7 +99,7 @@ Error, List Assignments: <rhss> must be a dense list
9999gap> ASSS_LIST_DEFAULT([ 1 ] ,1 ,[ 1 ] );
100100Error, List Assignments: < poss> must be a dense list of positive integers
101101gap> ASSS_LIST_DEFAULT(1 ,[ 1 ] ,[ 1 ] );
102- Error, List Assignments : < list> must be a list ( not the integer 1 )
102+ Error, List Assignment : < list> must be a mutable list
103103gap> l:= [] ;; ASSS_LIST_DEFAULT(l,[ 1 ] ,[ 1 ] ); l;
104104[ 1 ]
105105
0 commit comments