!TITLE CALLING THE EDITOR These examples assume that the EMAS option NOBRACKETS is selected. (a) To edit an existing file called "CURTEXT" so that the new file created will also be called "CURTEXT": VECCE CURTEXT This is the standard updating procedure. (b) To edit an existing file called "OLDTEXT" in such a way as to create a new file called "NEWTEXT": VECCE OLDTEXT/NEWTEXT (c) To create a new file called "PROG34" from scratch: VECCE .N/PROG34 The ".N" stands for a null file, so that technically this is a special case of (b) above starting with an empty old file. The first editing command when creating a new file would normally be "G*" (see Get below) !PAGE (d) To inspect an existing file called "RESULTS" without altering it: VECCE RESULTS/.N Again this is a special case of (b) with a null new file. Alteration commands are dis-allowed in this mode of operation. (e) To edit an existing file "PROG" together with a secondary input file "SPECS" in order to create a new file "FULLPROG": VECCE PROG,SPECS/FULLPROG In all cases where reference is made to a new file being created, the effect is to supersede any existing file of the same name, whether that file has been specified as an input to the Editor or not. (f) examples including option specifiers: VECCE CURTEXT-MINWIN=12-WTOP=6 VECCE CURTEXT-NOMATCH-PRE=WPCOMMANDS ! ! ! !>