home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
x
/
volume17
/
tcl-editor
/
part02
/
tclLib
/
startup.tcl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-03-18
|
338 b
|
16 lines
if [file exists ~/.ptrc] then {
source ~/.ptrc
} else {
if [file exists ./ptsetup.tcl] then {
source ./ptsetup.tcl
} else {
global PointTclLibrary
if [file exists $PointTclLibrary/ptsetup.tcl] {
source $PointTclLibrary/ptsetup.tcl
} else {
puts stderr \
"CANNOT FIND A STARTUP FILE. POINT WILL NOT WORK."
}
}
}