aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.tcl
blob: f6c404fad5c181d65d46f19740476efbcf98234c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Minimal support for package require
# No error on failure since C extensions aren't handled
proc package {cmd pkg} {
	if {$cmd eq "require"} {
		foreach path $::auto_path {
			if {[file exists $path/$pkg.tcl]} {
				uplevel #0 [list source $path/$pkg.tcl]
				return
			}
		}
	}
}