diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-18 13:35:53 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-18 13:35:53 (GMT) |
commit | 59dd8794c5be3c6fd398c50a80526921947220ef (patch) | |
tree | 043eeb5774f1b143615ee6780925b0a4798ac80f /library | |
parent | f748e43a22bb4e105a80b60c0ec76d26cd48353a (diff) | |
download | tcl-59dd8794c5be3c6fd398c50a80526921947220ef.zip tcl-59dd8794c5be3c6fd398c50a80526921947220ef.tar.gz tcl-59dd8794c5be3c6fd398c50a80526921947220ef.tar.bz2 |
Change the default for AutoPathSync in Tcl 9.0 (as described in TIP #579)
Diffstat (limited to 'library')
-rw-r--r-- | library/safe.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/safe.tcl b/library/safe.tcl index 0c09aa4..ab97b8f 100644 --- a/library/safe.tcl +++ b/library/safe.tcl @@ -1419,7 +1419,7 @@ namespace eval ::safe { # Set to 1 for "traditional" behavior: a child's entire access path and # module path are copied to its ::auto_path, which is updated whenever # the user calls ::safe::interpAddToAccessPath to add to the access path. - variable AutoPathSync 1 + variable AutoPathSync 0 # Log command, set via 'setLogCmd'. Logging is disabled when empty. variable Log {} |