diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-30 06:26:09 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-30 06:26:09 +0000 |
commit | df084314d8c12acbc59eaf20f35530300ceaa9fe (patch) | |
tree | 9bfa6519970c4abc5a0985c4591c2340cd3eb151 /libgfortran | |
parent | e8f3287fe1d5b1126d1b53963c77554e46c1dd34 (diff) | |
download | gcc-df084314d8c12acbc59eaf20f35530300ceaa9fe.tar.gz |
2012-05-30 Tobias Burnus <burnus@net-b.de>
* decl.c: Fix comment typos.
* expr.c: Ditto.
* frontend-passes.c: Ditto.
* match.c: Ditto.
* resolve.c: Ditto.
* trans-array.c: Ditto.
* trans-common.c: Ditto.
* trans-intrinsic.c: Ditto.
* trans-types.c: Ditto.
2012-05-30 Tobias Burnus <burnus@net-b.de>
* io/io.h: Fix comment typos.
* io/list_read.c: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188000 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/io/io.h | 8 | ||||
-rw-r--r-- | libgfortran/io/list_read.c | 2 |
3 files changed, 10 insertions, 5 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index e8f296d4b2f..547ed714f81 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2012-05-30 Tobias Burnus <burnus@net-b.de> + + * io/io.h: Fix comment typos. + * io/list_read.c: Ditto. + 2012-05-27 Janne Blomqvist <jb@gcc.gnu.org> * intrinsics/time_1.h (gf_cputime): Don't reevaluate HZ expression diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h index 6b54af18362..3b4b34a16f8 100644 --- a/libgfortran/io/io.h +++ b/libgfortran/io/io.h @@ -1,10 +1,10 @@ /* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, - 2011 + 2011, 2012 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle -This file is part of the GNU Fortran 95 runtime library (libgfortran). +This file is part of the GNU Fortran runtime library (libgfortran). Libgfortran is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -72,7 +72,7 @@ typedef struct array_loop_spec } array_loop_spec; -/* A stucture to build a hash table for format data. */ +/* A structure to build a hash table for format data. */ #define FORMAT_HASH_SIZE 16 @@ -400,7 +400,7 @@ typedef struct st_parameter_dt unsigned at_eol : 1; unsigned comma_flag : 1; /* A namelist specific flag used in the list directed library - to flag that calls are being made from namelist read (eg. to + to flag that calls are being made from namelist read (e.g. to ignore comments or to treat '/' as a terminator) */ unsigned namelist_mode : 1; /* A namelist specific flag used in the list directed library diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index b0c4e5fca52..6155d974e8b 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -3074,7 +3074,7 @@ find_nml_name: if (dtp->u.p.nml_read_error) goto find_nml_name; - /* A trailing space is required, we give a little lattitude here, 10.9.1. */ + /* A trailing space is required, we give a little latitude here, 10.9.1. */ c = next_char (dtp); if (!is_separator(c) && c != '!') { |