home *** CD-ROM | disk | FTP | other *** search
- /* OEd Rexx Command 'Ctrl + F6'
- *
- * comment out marked block
- *
- */
-
-
- address 'OEd'
-
- options results;
- blockbegin;
- b=result;
- if b>0 then do
- blockend;
- e=result;
- gotoy b;
- first;
- split;
- up;
- bend;
- 'write "(*"';
- do while b<=e
- b=b+1;
- down;
- first;
- 'write " *"';
- end;
- 'return';
- 'write "*)"'
- end
-
-