home *** CD-ROM | disk | FTP | other *** search
- procedure textdump;
-
- var
- tabloc : integer;
- libname: longname;
-
- begin
- tabloc := legaltab('ASCII text dump: ');
- lineout(space);
- if tabloc > 0 then with filetab[tabloc] do begin
- libname := title;
- if pos('.LBR', title) > 1 then begin
- lineout(title + ' is a library file: please select a member: ');
- libname := getlegal;
- if libname = '' then libname := 'DIR';
- libname := copy(title, 1, length(title)-4) + '/' + libname;
- end;
- typefile(filedrive + libname, false);
- if not cancelled then accesses := accesses + 1;
- end;
- end;