~ubuntu-branches/ubuntu/quantal/less/quantal

« back to all changes in this revision

Viewing changes to mkfuncs.awk

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Schoepf
  • Date: 2002-04-04 16:43:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020404164352-qldq048yoc7x5sd5
Tags: upstream-374
ImportĀ upstreamĀ versionĀ 374

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
BEGIN { FS="("; state = 0 }
 
2
 
 
3
/^      public/ { ftype = $0; state = 1 }
 
4
 
 
5
{ if (state == 1)
 
6
        state = 2
 
7
  else if (state == 2)
 
8
        { print ftype,$1,"();"; state = 0 }
 
9
}