diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-18 17:17:49 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-18 17:17:49 +0000 |
commit | a2ffc2c4a04938613f7f81cc3b91df0cbab40d51 (patch) | |
tree | 77600099ead49fd0e45bb06c7976fec0c72c9dd4 /libgfortran/runtime | |
parent | f8d967529bbc09f931bf7ab020fb540264a4b5f0 (diff) | |
download | ppe42-gcc-a2ffc2c4a04938613f7f81cc3b91df0cbab40d51.tar.gz ppe42-gcc-a2ffc2c4a04938613f7f81cc3b91df0cbab40d51.zip |
2006-10-16 Tobias Burnus <burnus@net-b.de>
* m4/in_pack.m4: Fixed a typo.
* m4/iforeach.m4: Fixed a typo.
* m4/eoshift1.m4: Fixed a typo.
* m4/eoshift3.m4: Fixed a typo.
* m4/cshift1.m4: Fixed a typo.
* m4/in_unpack.m4: Fixed a typo.
* m4/reshape.m4: Fixed a typo.
* m4/ifunction.m4: Fixed a typo.
* runtime/environ.c: Fixed a typo.
* runtime/in_pack_generic.c: Fixed a typo.
* runtime/in_unpack_generic.c: Fixed a typo.
* runtime/memory.c: Fixed a typo.
* intrinsics/cshift0.c: Fixed a typo.
* intrinsics/cpu_time.c: Fixed a typo.
* intrinsics/pack_generic.c: Fixed a typo.
* intrinsics/unpack_generic.c: Fixed a typo.
* intrinsics/eoshift0.c: Fixed a typo.
* intrinsics/eoshift2.c: Fixed a typo.
* intrinsics/reshape_generic.c: Fixed a typo.
* io/open.c: Fixed a typo.
* io/list_read.c: Fixed a typo.
* io/io.h: Fixed a typo.
* io/transfer.c: Fixed a typo.
* io/write.c: Fixed a typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117857 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/runtime')
-rw-r--r-- | libgfortran/runtime/environ.c | 4 | ||||
-rw-r--r-- | libgfortran/runtime/in_pack_generic.c | 2 | ||||
-rw-r--r-- | libgfortran/runtime/in_unpack_generic.c | 2 | ||||
-rw-r--r-- | libgfortran/runtime/memory.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/libgfortran/runtime/environ.c b/libgfortran/runtime/environ.c index c519f084573..555b4482c69 100644 --- a/libgfortran/runtime/environ.c +++ b/libgfortran/runtime/environ.c @@ -503,7 +503,7 @@ static variable variable_table[] = { stringize (DEFAULT_RECL), 0}, {"GFORTRAN_LIST_SEPARATOR", 0, NULL, init_sep, show_sep, - "Separatator to use when writing list output. May contain any number of " + "Separator to use when writing list output. May contain any number of " "spaces\nand at most one comma. Default is a single space.", 0}, /* Memory related controls */ @@ -855,7 +855,7 @@ mark_range (int unit1, int unit2) /* Parse the GFORTRAN_CONVERT_UNITS variable. This is called twice, once to count the units and once to actually mark them in - the table. When counting, we don't check for double occurences + the table. When counting, we don't check for double occurrences of units. */ static int diff --git a/libgfortran/runtime/in_pack_generic.c b/libgfortran/runtime/in_pack_generic.c index 1536db17d28..7f02b97bff9 100644 --- a/libgfortran/runtime/in_pack_generic.c +++ b/libgfortran/runtime/in_pack_generic.c @@ -138,7 +138,7 @@ internal_pack (gfc_array_char * source) the next dimension. */ count[n] = 0; /* We could precalculate these products, but this is a less - frequently used path so proabably not worth it. */ + frequently used path so probably not worth it. */ src -= stride[n] * extent[n] * size; n++; if (n == dim) diff --git a/libgfortran/runtime/in_unpack_generic.c b/libgfortran/runtime/in_unpack_generic.c index 8ca0fa53492..7c14355b809 100644 --- a/libgfortran/runtime/in_unpack_generic.c +++ b/libgfortran/runtime/in_unpack_generic.c @@ -136,7 +136,7 @@ internal_unpack (gfc_array_char * d, const void * s) the next dimension. */ count[n] = 0; /* We could precalculate these products, but this is a less - frequently used path so proabably not worth it. */ + frequently used path so probably not worth it. */ dest -= stride[n] * extent[n] * size; n++; if (n == dim) diff --git a/libgfortran/runtime/memory.c b/libgfortran/runtime/memory.c index db55a552168..43a72e3f1b2 100644 --- a/libgfortran/runtime/memory.c +++ b/libgfortran/runtime/memory.c @@ -1,4 +1,4 @@ -/* Memory mamagement routines. +/* Memory management routines. Copyright 2002, 2005, 2006 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> |