This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
[Patch, fortran] Committed, documentation bugfix
- From: Janne Blomqvist <blomqvist dot janne at gmail dot com>
- To: Fortran List <fortran at gcc dot gnu dot org>, GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 25 Aug 2009 21:25:54 +0300
- Subject: [Patch, fortran] Committed, documentation bugfix
Hello all,
I just committed the patch below as obvious.
Index: gfortran.texi
===================================================================
--- gfortran.texi (revision 151090)
+++ gfortran.texi (working copy)
@@ -1797,7 +1797,7 @@ c ... Code that sets A, B and C
with the following:
@smallexample
- INTEGER*1 LINE(80)
+ CHARACTER(LEN=80) LINE
REAL A, B, C
c ... Code that sets A, B and C
WRITE (UNIT=LINE, FMT=9000) A, B, C
Index: ChangeLog
===================================================================
--- ChangeLog (revision 151090)
+++ ChangeLog (working copy)
@@ -1,3 +1,7 @@
+2009-08-25 Janne Blomqvist <jb@gcc.gnu.org>
+
+ * gfortran.texi: Fix ENCODE example.
+
2009-08-25 Janus Weil <janus@gcc.gnu.org>
PR fortran/41139
--
Janne Blomqvist