This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix misapplied patch to texi2pod.pl
- From: Matt Kraai <kraai at alumni dot cmu dot edu>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 31 Jul 2003 20:15:54 -0700
- Subject: Fix misapplied patch to texi2pod.pl
Howdy,
I misapplied my patch to fix the generation of gcc.pod,
http://gcc.gnu.org/ml/gcc-patches/2003-07/msg00844.html
which resulting in new warnings.
The following patch correctly applies the original patch.
Tested by touching invoke.texi, running "make bootstrap", and
checking the log.
Committed as obvious.
--
Matt
Index: contrib/ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/contrib/ChangeLog,v
retrieving revision 1.167
diff -3 -c -p -r1.167 ChangeLog
*** contrib/ChangeLog 15 Jul 2003 09:24:07 -0000 1.167
--- contrib/ChangeLog 1 Aug 2003 03:03:04 -0000
***************
*** 1,3 ****
--- 1,7 ----
+ 2003-07-31 Matt Kraai <kraai@alumni.cmu.edu>
+
+ * texi2pod.pl: Remove extra line.
+
2003-07-15 Matt Kraai <kraai@alumni.cmu.edu>
* texi2pod.pl: Default @itemize's parameter to @bullet.
Index: contrib/texi2pod.pl
===================================================================
RCS file: /cvs/gcc/gcc/contrib/texi2pod.pl,v
retrieving revision 1.21
diff -3 -c -p -r1.21 texi2pod.pl
*** contrib/texi2pod.pl 15 Jul 2003 09:24:07 -0000 1.21
--- contrib/texi2pod.pl 1 Aug 2003 03:03:04 -0000
*************** while(<$inf>) {
*** 249,255 ****
} else {
$ic = '@bullet';
}
- $ic = $1;
$_ = "\n=over 4\n";
$endw = "itemize";
};
--- 249,254 ----