[net.unix-wizards] fix to csh # processing bug

wnj@krypton (04/03/83)

From:  sun!wnj@krypton (Bill Joy)

this fixes the bug with # being a comment character in csh -c


------- sh.lex.c -------
205c205,206
< 		if (intty)
---
> { extern bool nofile;
> 		if (intty || nofile)
206a208
> }

	bill joy