home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_WordToFind.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** put the current word into the find buffer
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* move to the end of the current word, copy it */
- position eow
- cursor right 1
- copy word back resultbuff
-
- /* if we got a word then put it into the findstring variable */
- if rc==0 then do
- putenvvar _fe_findstring """"result""""
- end
-
-