Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!mcnc!decwrl!pa.dec.com!wsl.dec.com!heiney From: heiney@wsl.dec.com (Bob Heiney) Newsgroups: comp.lang.postscript Subject: Re: Postscript filenames Message-ID: <1991May1.133427@wsl.dec.com> Date: 1 May 91 20:34:27 GMT References: <1991Apr30.170335.863@ttank.ttank.com> Sender: news@pa.dec.com (News) Reply-To: heiney@pa.dec.com (Bob Heiney) Distribution: usa Organization: DEC US Worksystems Sales Lines: 26 > What I want to know is what are %statementedit and %lineedit for These files are for use by PostScript interpreters which support an interactive executive. Using the file operator on %statementedit accumulates input in a temporary buffer, parsing editing control chars, until a statement has been read. A statement is (quoting from the new Redbook) "one or more lines terminated by a newline that together form one or more complete PostScript language tokens, with no opening brackets ( {, (, <, or <~ ) left unmatched." When the statement has been read, file returns. %lineedit is like %statementedit except that it returns after a line has been read, regardless of whether that line is a complete statement. > and what other special files are available? These are all of the special files that are described by the new Redbook. See Section 3.8.3, Special Files, pp. 78-80 of the PostScript Language Reference Manual, Second Edition. Information about these files is also in the original Redbook. /Bob