X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fscansbr.c;h=1f2785a06cdc424dae2ee427749fdba17ff2cef6;hb=f5d8200783f132f760b2ecda6358cdc0180f677b;hp=835a88483d79c8ed40300b1933eb21d014a273ad;hpb=df6971a59e8d01dcfe605bbac949b7d4b3ab0a92;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;