aboutsummaryrefslogtreecommitdiff
path: root/stdlib.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib.tcl')
-rw-r--r--stdlib.tcl5
1 files changed, 0 insertions, 5 deletions
diff --git a/stdlib.tcl b/stdlib.tcl
index aef6983..9cffb93 100644
--- a/stdlib.tcl
+++ b/stdlib.tcl
@@ -154,11 +154,6 @@ proc {dict remove} {dictionary {args key}} {
return $dictionary
}
-# Script-based implementation of 'dict values'
-proc {dict values} {dictionary {pattern *}} {
- dict keys [lreverse $dictionary] $pattern
-}
-
# Script-based implementation of 'dict for'
proc {dict for} {vars dictionary script} {
if {[llength $vars] != 2} {