home *** CD-ROM | disk | FTP | other *** search
- /* OEd Rexx Command 'Ctrl + F7'
- *
- * comment in marked block (undo 'Ctrl + F6')
- *
- */
-
-
- address 'OEd'
-
- options results;
- blockbegin;
- b=result;
- if b>0 then do
- l=b;
- blockend;
- e=result;
- gotoy b;
- deline;
- do while b<e-1
- first;
- del; del;
- down;
- b=b+1;
- end;
- deline;
- gotoy l;
- bbegin;
- gotoy e-2;
- bend
- end
-
-