home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
useful
/
util
/
edit
/
mg
/
rexx
/
region.mg
< prev
next >
Wrap
Text File
|
1990-06-02
|
437b
|
20 lines
/* Exercise the rexx-region command */
options failat 2
'rexx-region' region
/* Now, change to an alternate buffer, and delete all text in it */
'switch-to-buffer-other-window region-test-output'
'end-of-buffer'
'beginning-of-buffer'
'kill-region'
/* Put the region from the other buffer into the current buffer */
'rexx-insert "We got' region.0 'lines!\n"'
do i = 1 to region.0
'rexx-insert 'slashquote(region.i, '\')
end
exit 0