File: transfile

package info (click to toggle)
jellyfish 2.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,276 kB
  • sloc: cpp: 35,703; sh: 995; ruby: 578; makefile: 397; python: 165; perl: 36
file content (19 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
my @opt1_types = ('Opt', 'oOpt');
for my $otype (@opt1_types) {
    $manMacro1a{'L' . $otype} = $manMacro1a{$otype} . '--';
    $manMacro1b{'L' . $otype} = $manMacro1b{$otype};

    $htmlMacro1a{'L' . $otype} = $htmlMacro1a{$otype} . '--';
    $htmlMacro1b{'L' . $otype} = $htmlMacro1b{$otype};
}

my @opt2_types = ('OptArg', 'oOptArg', 'OptoArg', 'oOptoArg');
for my $otype (@opt2_types) {
    $manMacro2a{'L' . $otype} = $manMacro2a{$otype} . '--';
    $manMacro2b{'L' . $otype} = $manMacro2b{$otype};
    $manMacro2c{'L' . $otype} = $manMacro2c{$otype};

    $htmlMacro2a{'L' . $otype} = $htmlMacro2a{$otype} . '--';
    $htmlMacro2b{'L' . $otype} = $htmlMacro2b{$otype};
    $htmlMacro2c{'L' . $otype} = $htmlMacro2c{$otype};
}