summaryrefslogtreecommitdiff
path: root/findsyntax.pl
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@irssi.org>2008-11-13 10:22:35 +0000
committerexg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564>2008-11-13 10:22:35 +0000
commit5497b07c8a1331e0322b614f55d458d2319ea3ea (patch)
tree3180cf4588e155e97955fa47205d1132bf254ddd /findsyntax.pl
parent169c55b9496aaa8517f18f9f288b9fdf759040df (diff)
downloadirssi-5497b07c8a1331e0322b614f55d458d2319ea3ea.zip
Merge findsyntax.pl in syntax.pl.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4905 dbcabf3a-b0e7-0310-adc4-f8d773084564
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;
- }
-}