home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** $VER: AddWordToDictionary.edge 1.2 (Sunday 08-Aug-93 02:26:51)
- **
- ** Script to add the word under the cursor to the dictionary.
- **
- ** Written by Thomas liljetoft
- */
-
- options results
-
- /* get the users error-report level */
-
- getenvvar _ge_errlevel
- errlevel = result
-
- 'position' eow
- 'cursor' right 1 /* put cursor beyond end of word */
- 'copy' word back rb
-
- 'dictionary' result add /* add it */
-
- if RC >= errlevel then do
-
- /* something went wrong enought to be reported so report */
-
- 'fault'
- 'requestnotify' '"'result'"'
- end
-
- exit(0)
-