1 03/11/76 edit delete, edit del
2
3 Function: The delete request removes specified lines from the user's
4 current file.
5
6
7 Syntax: edit delete line1 line2 ... lineN
8
9
10 where each linei is a line number or a range of lines. Numbers must be
11 specified in increasing order.
12
13
14 Example:
15
16 ! new newfile
17 ready 1302
18
19 ! 10 do 100 item = 1,10
20 ! 11 call r_$ua_num
21 ! 12 namt = 1000*a_num+50
22 ! 13 i = i+1
23 ! 14 call r_$uw_ch
24 ! 15 i = w_ch*9
25
26 ! edit delete 11-13
27 ready 1302
28
29 ! lisn
30
31 10 do 100 item = 1,10
32 14 call r_$uw_ch
33 15 i = w_ch*9