* texi2pod.pl: Substitue for @value even when part of @include.
authorMark Mitchell <mark@codesourcery.com>
Fri, 21 Oct 2005 23:29:22 +0000 (23:29 +0000)
committerMark Mitchell <mark@codesourcery.com>
Fri, 21 Oct 2005 23:29:22 +0000 (23:29 +0000)
etc/ChangeLog
etc/texi2pod.pl

index 96794ff1c3b91334a6768304400ebc58eb78178e..0f01686d6775f220a1bd606c9af386bbd040ecc1 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-11  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: Import latest version from GCC.
index 49953d4f24645dd94135fedf161821a526d8213d..9696a12f3610a10d9579ea12cc6a6680a8d0905c 100644 (file)
@@ -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;
     };
 
This page took 0.028157 seconds and 4 git commands to generate.