summaryrefslogtreecommitdiff
path: root/undo
diff options
context:
space:
mode:
Diffstat (limited to 'undo')
-rwxr-xr-xundo12
1 files changed, 0 insertions, 12 deletions
diff --git a/undo b/undo
deleted file mode 100755
index 541aef4a44..0000000000
--- a/undo
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl -00
-
-$* = 1;
-while (<>) {
- if (/^do_(\w+)/) {
- open(OUT, ">>do/$1");
- }
- print OUT;
- chop;
- chop;
- close OUT if chop eq '}' && chop eq "\n";
-}