summarylogtreecommitdiffstats
path: root/tools.patch
diff options
context:
space:
mode:
authorAndreas Dixius2018-10-10 09:13:40 +0200
committerAndreas Dixius2018-10-10 09:13:40 +0200
commite88f3dd5f33794ad4c8f3b4ea79d625e66585b2b (patch)
tree335d2343e09b4c3a831aefd38189f25a28d8e54b /tools.patch
parentc8431f68bdf445756fe8fbb3c3fc93509a132ee8 (diff)
downloadaur-e88f3dd5f33794ad4c8f3b4ea79d625e66585b2b.tar.gz
version 1.17
Diffstat (limited to 'tools.patch')
-rw-r--r--tools.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/tools.patch b/tools.patch
deleted file mode 100644
index 9325010e00ac..000000000000
--- a/tools.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/tcl/tools.tcl 2012-11-22 22:34:00.000000000 +0100
-+++ b/tcl/tools.tcl 2018-08-03 12:41:39.614684540 +0200
-@@ -36,6 +36,7 @@
- return $h
- }
-
-+if {[llength [info commands lreverse]] == 0} {
- # return the same list in reverse order
- proc lreverse { list } {
-
-@@ -45,7 +46,9 @@
- }
- return $reverse
- }
-+}
-
-+if {[llength [info commands lmap]] == 0} {
- # aply command map on each element of list, returning the a new list
- proc lmap { list map } {
- set mapped {}
-@@ -54,6 +57,7 @@
- }
- return $mapped
- }
-+}
-
- # print line wrapped to specified width
- proc wrappedputs { line width } {