diff options
author | dgp <dgp@users.sourceforge.net> | 2020-10-27 21:10:41 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2020-10-27 21:10:41 (GMT) |
commit | f9867210201c135f502c237dc2d1d4623e4d0d58 (patch) | |
tree | 70b99c199faa07144b8311ca1b2eabdd33f466cc /library/init.tcl | |
parent | 2ae1425228575d9d4078191a7c8ead960570fe51 (diff) | |
parent | 37d6f900991ec0280a7ecc776cd823f6cb1ab819 (diff) | |
download | tcl-f9867210201c135f502c237dc2d1d4623e4d0d58.zip tcl-f9867210201c135f502c237dc2d1d4623e4d0d58.tar.gz tcl-f9867210201c135f502c237dc2d1d4623e4d0d58.tar.bz2 |
merge 8.6
Diffstat (limited to 'library/init.tcl')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index a4b4da1..5efd7b0 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -84,7 +84,7 @@ namespace eval tcl { proc min {args} { if {![llength $args]} { return -code error \ - "too few arguments to math function \"min\"" + "not enough arguments to math function \"min\"" } set val Inf foreach arg $args { @@ -100,7 +100,7 @@ namespace eval tcl { proc max {args} { if {![llength $args]} { return -code error \ - "too few arguments to math function \"max\"" + "not enough arguments to math function \"max\"" } set val -Inf foreach arg $args { |