Ignore:
Timestamp:
Oct 25, 2006, 12:41:23 AM (17 years ago)
Author:
Bruno Cornec
Message:

mindi-busybox now uses busybox 1.2.2 (Thanks Rob for that last update and good lucck for your future projects).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi-busybox/docs/autodocifier.pl

    r821 r902  
    2222sub beautify {
    2323    my $text = shift;
    24     $text =~ s/USAGE_NOT\w+\(.*?"\s*\)//sxg;
    25     $text =~ s/USAGE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg;
     24    for (;;) {
     25        my $text2 = $text;
     26        $text =~ s/SKIP_\w+\(.*?"\s*\)//sxg;
     27        $text =~ s/USE_\w+\(\s*?(.*?)"\s*\)/$1"/sxg;
     28        last if ( $text2 eq $text );
     29    }
    2630    $text =~ s/"\s*"//sg;
    2731    my @line = split("\n", $text);
Note: See TracChangeset for help on using the changeset viewer.