1 03/12/76   edit sequence, edit seq
 2 
 3 Function:  The sequence request adds a new set of line numbers to the
 4 current file, beginning with a given line number and adding a given
 5 increment to derive subsequent numbers.  If the file already has line
 6 numbers, these are retained but become part of the text on the line.
 7 If no increment is supplied, 10 is assumed.  If no arguments are
 8 supplied, the first line number in the file will be 100.
 9 
10 
11 Syntax:  edit sequence {first_num inc}
12 
13 
14 where:
15 
16 1.   first_num      is the first line number (100 by default).
17 
18 2.   inc            is the increment used to derive subsequent numbers
19                     (10 by default).
20 
21 
22 Example:
23 
24 !    build
25 !    nonnumbered
26 !    file
27 !    input
28 !
29 
30      ready  1503
31 
32 
33 !    edit sequence
34      ready  1503
35 
36 
37 !    lisn
38      100 nonnumbered
39      110 file
40      120 input
41      ready  1503
42 
43 
44 !    edit sequence 500 5
45      ready  1504
46 
47 
48 !    lisn
49      500 100 nonnumbered
50      505 110 file
51      510 120 input
52      ready  1504