home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
411b.lha
/
dme_1.42
/
rexmacs
/
get.dme
< prev
next >
Wrap
Text File
|
1990-09-08
|
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