X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fscansbr.c;h=1f2785a06cdc424dae2ee427749fdba17ff2cef6;hb=740e258c5622dfe9a98a474647d8ddc164109b2f;hp=835a88483d79c8ed40300b1933eb21d014a273ad;hpb=400875ce6f5a30b6a0493c8cae912c36a4a0595d;p=mmh diff --git a/uip/scansbr.c b/uip/scansbr.c index 835a884..1f2785a 100644 --- a/uip/scansbr.c +++ b/uip/scansbr.c @@ -207,6 +207,15 @@ scan (FILE *inb, int innum, int outnum, char *nfs, int width, int curflg, case BODY: compnum = -1; + /* + * A slight hack ... if we have less than rlwidth characters + * in the buffer, call m_getfld again. + */ + + if ((i = strlen(tmpbuf)) < rlwidth) { + state = m_getfld (state, name, tmpbuf + i, + rlwidth - i, inb); + } if (! outnum) { state = FILEEOF; /* stop now if scan cmd */ goto finished;