This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch for spurious @ at start of manuals
- From: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>
- To: <gcc-patches at gcc dot gnu dot org>, <java-patches at gcc dot gnu dot org>
- Date: Sun, 30 Mar 2003 18:03:02 +0100 (BST)
- Subject: Patch for spurious @ at start of manuals
The fastjar and gcj manuals wrongly start with "@\input texinfo"
rather than "\input texinfo", yielding a stray @ on the title page.
I've applied the following obvious patch to mainline and 3.3 branch to
fix this.
fastjar:
2003-03-30 Joseph S. Myers <jsm at polyomino dot org dot uk>
* fastjar.texi: Remove @ at start of file.
gcc/java:
2003-03-30 Joseph S. Myers <jsm at polyomino dot org dot uk>
* gcj.texi: Remove @ at start of file.
diff -ruN GCC.orig/fastjar/fastjar.texi GCC/fastjar/fastjar.texi
--- GCC.orig/fastjar/fastjar.texi 2003-02-04 00:47:55.000000000 +0000
+++ GCC/fastjar/fastjar.texi 2003-03-30 16:20:34.000000000 +0000
@@ -1,4 +1,4 @@
- at \input texinfo @c -*-texinfo-*-
+\input texinfo @c -*-texinfo-*-
@setfilename fastjar.info
@settitle Guide to GNU jar utilites
diff -ruN GCC.orig/gcc/java/gcj.texi GCC/gcc/java/gcj.texi
--- GCC.orig/gcc/java/gcj.texi 2003-03-23 18:46:11.000000000 +0000
+++ GCC/gcc/java/gcj.texi 2003-03-30 16:20:46.000000000 +0000
@@ -1,4 +1,4 @@
- at \input texinfo @c -*-texinfo-*-
+\input texinfo @c -*-texinfo-*-
@setfilename gcj.info
@settitle Guide to GNU gcj
--
Joseph S. Myers
jsm28 at cam dot ac dot uk