diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-17 12:37:44 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-17 12:37:44 (GMT) |
commit | 24857c216d0509db6addceb6d1caedfb84ee81ab (patch) | |
tree | 786719ae7e2df8fbfd16981d68a2ba3e95f0ef8b /library | |
parent | 15bee119a24685e66f1d427e207032ea02d04c64 (diff) | |
download | tcl-24857c216d0509db6addceb6d1caedfb84ee81ab.zip tcl-24857c216d0509db6addceb6d1caedfb84ee81ab.tar.gz tcl-24857c216d0509db6addceb6d1caedfb84ee81ab.tar.bz2 |
* library/init.tcl: export min and max commands from the mathfunc
namespace [Bug 2116053]
Diffstat (limited to 'library')
-rw-r--r-- | library/init.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/init.tcl b/library/init.tcl index eadb13b..1876f3a 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.104.2.5 2008/08/28 16:08:30 dgp Exp $ +# RCS: @(#) $Id: init.tcl,v 1.104.2.6 2008/09/17 12:37:49 msofer Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -109,6 +109,7 @@ namespace eval tcl { } return $val } + namespace export min max } } |