diff options
author | Tobias Burnus <burnus@net-b.de> | 2011-01-16 18:14:48 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2011-01-16 18:14:48 +0100 |
commit | fc1e05d293811b305924ae0d8cb15b714ebbcdf4 (patch) | |
tree | 53d3b342dee41f09495f782b838acb11cd788e3e /gcc/fortran/invoke.texi | |
parent | e313241f91a24365102a657ff8bb04a647b7963b (diff) | |
download | gcc-fc1e05d293811b305924ae0d8cb15b714ebbcdf4.zip gcc-fc1e05d293811b305924ae0d8cb15b714ebbcdf4.tar.gz gcc-fc1e05d293811b305924ae0d8cb15b714ebbcdf4.tar.bz2 |
re PR fortran/47177 (bad example of using -dM in manual)
2011-01-15 Tobias Burnus <burnus@net-b.de>
* gfortran.texi: Update Fortran 2003 Status section.
PR fortran/47177
* invoke.texi: Add missing "-E" to the -dM example.
From-SVN: r168857
Diffstat (limited to 'gcc/fortran/invoke.texi')
-rw-r--r-- | gcc/fortran/invoke.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/invoke.texi b/gcc/fortran/invoke.texi index 9131321..ae11356 100644 --- a/gcc/fortran/invoke.texi +++ b/gcc/fortran/invoke.texi @@ -1,11 +1,11 @@ -@c Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +@c Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 @c Free Software Foundation, Inc. @c This is part of the GNU Fortran manual. @c For copying conditions, see the file gfortran.texi. @ignore @c man begin COPYRIGHT -Copyright @copyright{} 2004, 2005, 2006, 2007, 2008, 2009, 2010 +Copyright @copyright{} 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document @@ -410,7 +410,7 @@ preprocessor, including predefined macros. This gives you a way of finding out what is predefined in your version of the preprocessor. Assuming you have no file @file{foo.f90}, the command @smallexample - touch foo.f90; gfortran -cpp -dM foo.f90 + touch foo.f90; gfortran -cpp -E -dM foo.f90 @end smallexample will show all the predefined macros. |