summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorhypnotoad <yoda@etoyoc.com>2017-09-25 13:36:58 (GMT)
committerhypnotoad <yoda@etoyoc.com>2017-09-25 13:36:58 (GMT)
commite55f59bd83022c9a4f13f72b470f6427a21d8a4c (patch)
tree51acfec6591b2055bfee8edcd0561ea15dea112c /library
parentc55b8ed591aac38cdcf8ebacae669d707fdd8e40 (diff)
parentb0fe49c36dde40613283049b38e045f4f251c283 (diff)
downloadtcl-e55f59bd83022c9a4f13f72b470f6427a21d8a4c.zip
tcl-e55f59bd83022c9a4f13f72b470f6427a21d8a4c.tar.gz
tcl-e55f59bd83022c9a4f13f72b470f6427a21d8a4c.tar.bz2
Pull changes from Trunk
Diffstat (limited to 'library')
-rw-r--r--library/init.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl
index ece1e44..87d9f14 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -16,7 +16,7 @@
if {[info commands package] == ""} {
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
-package require -exact Tcl 8.7a0
+package require -exact Tcl 8.7a2
# Compute the auto path to use in this interpreter.
# The values on the path come from several locations:
@@ -642,7 +642,7 @@ proc auto_import {pattern} {
if {$tcl_platform(platform) eq "windows"} {
# Windows version.
#
-# Note that info executable doesn't work under Windows, so we have to
+# Note that file executable doesn't work under Windows, so we have to
# look for files with .exe, .com, or .bat extensions. Also, the path
# may be in the Path or PATH environment variables, and path
# components are separated with semicolons, not colons as under Unix.