home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------------------------
- :Program. Options.ced
- :Contents. Set Oberon options with CygnusEd Professional
- :Author. Kai Bolay [kai]
- :Address. Snail-Mail: E-Mail:
- :Address. Hoffmannstraße 168 UUCP: kai@amokle.tynet.sub.org
- :Address. D-7250 Leonberg 1 FIDO: 2:247/706.3
- :History. v1.0 [kai] 12-Mar-92
- :Version. $VER: Options 1.0 (12-Mar-92)
- :Copyright. FD
- :Language. ARexx
- :Translator. RexxMast
- :Bugs. "Creative Quoting" of CED is real shit!
- ------------------------------------------------------------------------ */
-
- options results
-
- opts = GetClip("OberonOpts")
- empty = (opts = "")
- if empty then opts = "svbcrnotpzmd1238igy"
- getstring '"'opts'"' '"Bitte geben sie die Compileroptionen ein"'
- opts = result
- if (opts ~= "RESULT") & ~(empty & (opts = "")) then do
- if ~setclip("OberonOpts",opts) then do
- Okay1 "Fehler: Kann Optionen nicht merken"
- exit
- end
- end
-
- opts = GetClip("OLinkOpts")
- empty = (opts = "")
- if empty then opts = "smdi"
- getstring '"'opts'"' '"Bitte geben sie die Linkeroptionen ein"'
- opts = result
- if (opts ~= "RESULT") & ~(empty & (opts = "")) then do
- if ~setclip("OLinkOpts",opts) then do
- Okay1 "Fehler: Kann Optionen nicht merken"
- exit
- end
- end
-