home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_EditConfig.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Edit the specified configuration file
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* grab the arg */
- parse arg name
-
- /* is the current window empty? */
- getenvvar _fe_size
- if result>0 then do
-
- /* open a new window */
- new
-
- /* if all is well then talk to it */
- if rc==0 then do
- address value result
-
- /* find the filename we want */
- getenvvar '_ge_'name
- open result
- end
- end
- else do
- /* find the filename we want */
- getenvvar '_ge_'name
- open result
- end
-
-