aboutsummaryrefslogtreecommitdiff
path: root/stdlib.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib.tcl')
-rw-r--r--stdlib.tcl10
1 files changed, 0 insertions, 10 deletions
diff --git a/stdlib.tcl b/stdlib.tcl
index caacc00..e05f93c 100644
--- a/stdlib.tcl
+++ b/stdlib.tcl
@@ -1,13 +1,3 @@
-# Create a single word alias (proc) for one or more words
-# e.g. alias x info exists
-# if {[x var]} ...
-proc alias {name args} {
- set prefix $args
- proc $name args prefix {
- tailcall {*}$prefix {*}$args
- }
-}
-
# Creates an anonymous procedure
proc lambda {arglist args} {
set name [ref {} function lambda.finalizer]