home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_WordToRep.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** put the current word into the replace string
- **
- ** 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 replacestring variable */
- if rc==0 then do
- putenvvar _fe_replacestring """"result""""
- end
-
-