diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-08 14:56:41 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-08 14:56:41 +0000 |
commit | f7b529fae761c8603888bee76614147954754e75 (patch) | |
tree | bf128e11ba70bddbb7f8b8beb206603bd3c66ad5 /gcc/fortran/scanner.c | |
parent | 03fd3f84d88fb235f16093b9da6e91e6f4a7c253 (diff) | |
download | gcc-f7b529fae761c8603888bee76614147954754e75.zip gcc-f7b529fae761c8603888bee76614147954754e75.tar.gz gcc-f7b529fae761c8603888bee76614147954754e75.tar.bz2 |
arith.c, [...]: Fix comment formatting.
* arith.c, array.c, decl.c, expr.c, f95-lang.c, gfortran.h,
gfortranspec.c, interface.c, intrinsic.c, iresolve.c, match.c,
module.c, parse.c, parse.h, primary.c, resolve.c, scanner.c,
trans-array.c, trans-array.h, trans-expr.c, trans-intrinsic.c,
trans-io.c, trans-stmt.c, trans.h: Fix comment formatting.
From-SVN: r90266
Diffstat (limited to 'gcc/fortran/scanner.c')
-rw-r--r-- | gcc/fortran/scanner.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/scanner.c b/gcc/fortran/scanner.c index 734afa0..3731398 100644 --- a/gcc/fortran/scanner.c +++ b/gcc/fortran/scanner.c @@ -468,7 +468,7 @@ restart: goto done; /* If the next nonblank character is a ! or \n, we've got a - continuation line. */ + continuation line. */ old_loc = gfc_current_locus; c = next_char (); @@ -981,7 +981,7 @@ include_line (char *line) if (*c != '\0' && *c != '!') return false; - /* We have an include line at this point. */ + /* We have an include line at this point. */ *stop = '\0'; /* It's ok to trash the buffer, as this line won't be read by anything else. */ @@ -1093,7 +1093,7 @@ load_file (char *filename, bool initial) /* Determine the source form from the filename extension. We assume - case insensitivity. */ + case insensitivity. */ static gfc_source_form form_from_filename (const char *filename) |