[comp.lang.postscript] Using // with dictionary names

marmar@mtk.UUCP (Mark Martino) (08/08/89)

Are these two sets of PostScript statements equivalent?

	//somedictionary begin
		.
		.
		.
	end

	somedictionary begin
		.
		.
		.
	end

I have a PostScript file that uses both forms and they both seem to
cause the same things to happen.  Why bother with the first one if the
second one will do?