home *** CD-ROM | disk | FTP | other *** search
- /* rexx to indent a marked block */
- /* Get line of end of block */
- 'BM "E"'
- options results
- 'GL'
- end = result
- options
- /* goto start of block */
- 'BM "B"'
- 'BL'
- do forever
- /* Get line */
- options results
- 'GT'
- options
- line = result
- /* get first char */
- num = SUBSTR(line, 1, 3)
- if num = " " then
- 'DC DC DC'
- else if SUBSTR(line, 1, 1) = "09"x then
- 'DC'
- 'BL NL'
- /* check to see if done */
- options results
- 'GL'
- options
- if result > end then exit(0)
- end
-