[net.sources] Ispell bug fix

clamen@f.gp.cs.cmu.edu (Stewart Clamen) (01/16/87)

The version of ispell that Walt Buerhing sent out has a small bug that
causes -l mode to crash.  Here's the diff to fix it:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
ARPA:   CLAMEN@C.CS.CMU.EDU
USENET: ...!rochester!cmu-cs-pt!b.gp.cs.cmu.edu!clamen
TRW(*): Stewart M. Clamen

(*) The Real World, not the company

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

% diff -c ispell.c.old $ISPELL/src/ispell.c
*** ispell.c.old	Thu Jan 15 21:50:41 1987
--- /usr/misc/.ispell/src/ispell.c	Wed Jan 14 14:44:29 1987
***************
*** 271,277
  			if (!lflag)
  				fprintf (outfile, "%s", token);
  		}
! 		putc ('\n', outfile); 
  	}
  }
  

--- 271,277 -----
  			if (!lflag)
  				fprintf (outfile, "%s", token);
  		}
! 		if (!lflag) putc ('\n', outfile); 
  	}
  }
  
%