diff --git a/lib/grpffmat.gi b/lib/grpffmat.gi index 2e32f7f18c..fed1aa76d2 100644 --- a/lib/grpffmat.gi +++ b/lib/grpffmat.gi @@ -180,8 +180,7 @@ InstallGlobalFunction(ProjectiveActionOnFullSpace,function(g,f,n) local o; # as the groups are large, we can take all normed vectors o:=NormedRowVectors(f^n); - o:=ImmutableMatrix(f,o); - o:=Set(o); + o:=Set(o, r -> ImmutableVector(f, r)); return Action(g,o,OnLines); end);