home *** CD-ROM | disk | FTP | other *** search
- /* Saves the marked block as a file with the filename specified by */
- /* the 1st argument. If no name is specified, the block is written */
- /* to file "t:$bsave". Arguments following the 1st one are ignored. */
- /* */
- /* Kim DeVaughn 12/21/87 */
-
- options failat 5
- rc = 0
-
- parse arg filename junk
- if filename = ""
- then bsave "t:$bsave"
- else bsave filename
- exit rc
-
-