home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 45
/
Amiga_Dream_45.iso
/
Amiga
/
Magazine
/
Dossier-LaTeX
/
PasTeX-GED.lha
/
PasTeX-GoldED
/
Letterhead.ged
< prev
next >
Wrap
Text File
|
1994-10-11
|
697b
|
27 lines
/* Script loads your preferred letterhead */
/* $VER: 0.9, ⌐1993 Dietmar Eilert. Empty GoldED macro */
OPTIONS RESULTS /* enable return codes */
if (LEFT(ADDRESS(), 6) ~= "GOLDED") then /* not started by GoldEd ? */
address 'GOLDED.1'
'LOCK CURRENT' /* lock GUI, gain access */
OPTIONS FAILAT 6 /* ignore warnings */
SIGNAL ON SYNTAX /* ensure clean exit */
'OPEN INSERT="tex:doc/Letterhead.tex"'
'GOTO LINE=9'
'GOTO COLUMN=15'
'UNLOCK' /* VERY important: unlock GUI */
EXIT
SYNTAX:
SAY "Sorry, error line" SIGL ":" ERRORTEXT(RC) ":-("
'UNLOCK'
EXIT