Changeset 904 in MondoRescue for trunk/mindi-busybox/docs
- Timestamp:
- Oct 25, 2006, 1:51:57 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mindi-busybox/docs/autodocifier.pl
r821 r904 22 22 sub beautify { 23 23 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 } 26 30 $text =~ s/"\s*"//sg; 27 31 my @line = split("\n", $text);
Note:
See TracChangeset
for help on using the changeset viewer.