[comp.soft-sys.andrew] errata: ctext bug report

tobeye@NORTHSTAR.DARTMOUTH.EDU (Anthony Edwards) (02/28/91)

Sorry about a detail of the last message - I made the block that I
pasted one line too long.  If you end the block at the end of the same
line as the "i++;", the bug appears:


    for (runner= 0; buff[runner]; runner++) {
      if (buff[runner]=='"') {  
	/* double quoted string token */
	i++;
	while (buff[i] && buff[i] !='"')
	  i++;
        }

Sorry about any confusing from that.