This should hopefully fix a problem Clint noticed with his LOAD bug,
assuming he is using this op. The code was assuming that a string_make's
passed len==buflen, which is no longer the case.

Mike Lambert

Index: core.ops
===================================================================
RCS file: /cvs/public/parrot/core.ops,v
retrieving revision 1.126
diff -r1.126 core.ops
370c370
<   s->bufused = s->buflen;
---
>   s->bufused = len;


Reply via email to