home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d441
/
dme
/
rexmacs
/
get.dme
< prev
next >
Wrap
Text File
|
1991-01-24
|
477b
|
19 lines
/* Inserts the file specified by the 1st argument immediately above */
/* the line the cursor is on. If no filename is specified, the file */
/* "t:$bsave" is used if it exists. Arguments following the 1st one */
/* are ignored. */
/* */
/* Kim DeVaughn 12/21/87 */
options failat 5
rc = 0
parse arg filename junk
if filename = ""
then if exists("t:$bsave")
then insfile "t:$bsave"
else nop
else insfile filename
exit rc