mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-26 17:49:29 +08:00
* texi2pod.pl: Substitue for @value even when part of @include.
From-SVN: r105780
This commit is contained in:
parent
0e714a54f3
commit
901097dbd4
@ -1,3 +1,7 @@
|
||||
2005-10-21 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* texi2pod.pl: Substitue for @value even when part of @include.
|
||||
|
||||
2005-10-21 Bob Wilson <bob.wilson@acm.org>
|
||||
|
||||
* texi2pod.pl: Convert two single quotes or two backquotes to
|
||||
|
@ -227,11 +227,12 @@ while(<$inf>) {
|
||||
/^\@include\s+(.+)$/ and do {
|
||||
push @instack, $inf;
|
||||
$inf = gensym();
|
||||
$file = postprocess($1);
|
||||
|
||||
# Try cwd and $ibase.
|
||||
open($inf, "<" . $1)
|
||||
or open($inf, "<" . $ibase . "/" . $1)
|
||||
or die "cannot open $1 or $ibase/$1: $!\n";
|
||||
open($inf, "<" . $file)
|
||||
or open($inf, "<" . $ibase . "/" . $file)
|
||||
or die "cannot open $file or $ibase/$file: $!\n";
|
||||
next;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user