[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: print fix



I'm very sorry, I was confused.

The fix by stanonik@nprdc.arpa was right.
But, it is better to fix the C function "print"
in "print.d":

	object
	print(obj, strm)
	object obj, strm;
	{
		terpri(strm);
		prin1(obj, strm);
++		writec_stream(' ', strm);
	}

-- Masami