summaryrefslogtreecommitdiff
path: root/findsyntax.pl
diff options
context:
space:
mode:
Diffstat (limited to 'findsyntax.pl')
-rwxr-xr-xfindsyntax.pl18
1 files changed, 0 insertions, 18 deletions
diff --git a/findsyntax.pl b/findsyntax.pl
deleted file mode 100755
index e24d50f0..00000000
--- a/findsyntax.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl -w
-
-while(<>) {
- if(m!/\*.SYNTAX\:! || $tt) {
- s/^\s+/ /;
- if (/^ [A-Z]+/) {
- print "\n";
- s/^ //;
- }
- if (m!\*/!) {
- $tt=0;
- } else {
- $tt=1;
- chomp;
- }
- print;
- }
-}