SUBSEQ should also work with vectors of bytes.

This commit is contained in:
jjgarcia 2002-10-16 06:56:47 +00:00
parent f03ef8ae16
commit 874affc400

View file

@ -211,6 +211,11 @@ E:
x->array.self.lf[j] =
sequence->array.self.lf[i];
break;
case aet_b8:
case aet_i8:
for (i = s, j = 0; i < e; i++, j++)
x->vector.self.b8[j] = sequence->vector.self.b8[i];
break;
default:
internal_error("subseq");
}