diff options
author | andreas_kupries <akupries@shaw.ca> | 2010-09-02 04:52:47 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2010-09-02 04:52:47 (GMT) |
commit | b950ee3dd312e66ccd595e0ac905c8fe80410a26 (patch) | |
tree | c6656dd82b16857c3f9ba4deeaef01a97f1475bb /library/safe.tcl | |
parent | edef60ea0d312a837373055536430373006632d9 (diff) | |
download | tcl-b950ee3dd312e66ccd595e0ac905c8fe80410a26.zip tcl-b950ee3dd312e66ccd595e0ac905c8fe80410a26.tar.gz tcl-b950ee3dd312e66ccd595e0ac905c8fe80410a26.tar.bz2 |
* library/safe.tcl (::safe::AliasGlob): Moved the command
extending the actual glob command with a -directory flag to when
we actually have a proper untranslated path,
Diffstat (limited to 'library/safe.tcl')
-rw-r--r-- | library/safe.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/safe.tcl b/library/safe.tcl index e89ca29..7b4a50d 100644 --- a/library/safe.tcl +++ b/library/safe.tcl @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: safe.tcl,v 1.16.4.6 2009/12/30 22:20:57 dkf Exp $ +# RCS: @(#) $Id: safe.tcl,v 1.16.4.7 2010/09/02 04:52:49 andreas_kupries Exp $ # # The implementation is based on namespaces. These naming conventions are @@ -699,7 +699,6 @@ proc ::safe::AliasGlob {slave args} { set got($opt) 1 set virtualdir [lindex $args [incr at]] incr at - lappend cmd -directory $dir } pkgIndex.tcl { # Oops, this is globbing a subdirectory in regular package @@ -734,6 +733,7 @@ proc ::safe::AliasGlob {slave args} { return } } + lappend cmd -directory $dir } # Apply the -join semantics ourselves |