APPEND.100 by James Yi (c) 1989 Adapted for the M100 by Wilson Van Alst APPEND.CO is 209 bytes and runs in Alt LCD buffer. It is a text utility that lets text cut with or copied with append to the paste buffer, then the accumulated buffer contents are returned whenever the PASTE key is pressed. While in APPEND, the paste buffer can be cleared by pressing without moving the cursor. When APPEND is run from the Menu it prompts for a file name. Type the name, and as you press ENTER hold down the SHIFT key if you want the normal word-wrap feature intact. If you press ENTER without the SHIFT key, the word-wrap feature will be disabled. The program turns its self off when you exit from TEXT. If typing the file name each time you access a text file becomes too inconvenient, you may want to try the following solution: Create the Basic program listed below for each text file that you access frequently, and then whenever you want to edit one run the Basic program for that file. In line 1, replace "NOTE" with another name and change W=0 to W=1, if you want the word-wrap feature enabled. 10 F$="NOTE":W=0 20 F$=F$+CHR$(0):V=VARPTR(F$) 30 LOADM"ADDCLP":CALL64704,W,PEEK(V+1)+PEEK(V+2)*256