home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************
- *
- * BlockSearch.ced Copyright (c) 1989, Peter Cherna
- *
- * ARexx program for CygnusEd Professional that performs a search for text
- * contained in the marked area.
- *
- * Version 1.10: May 7, 1989 Release 1.2: August 29, 1989
- *
- ************************************************************************/
-
- options results
-
- address 'rexx_ced'
-
- copy block
-
- /* Check if we got a block (was there a block marked?) */
- if result = 'RESULT' then
- DO
- /* result = contents of Block buffer */
- status 60
-
- searchstring = result
-
- search for searchstring
-
- /* Did the search fail? */
- if result ~= 'RESULT' then
- /* Display problem (would be "string not found.") */
- okay1 result
- END
- else
- /* Display problem (would be "No block marked") */
- okay1 result
- exit
-