acinclude.m4: Fix spelling error of "separate" as "seperate".

config:
	* acinclude.m4: Fix spelling error of "separate" as "seperate".

gcc:
	* ChangeLog.2, c-decl.c, config/i386/i386.md, doc/gcc.texi, gcc.c,
	genmultilib, toplev.c: Fix spelling errors of "separate" as
	"seperate", and corresponding spelling errors of related words.

gcc/ada:
	* 5oosinte.adb: Fix spelling error of "separate" as "seperate".

gcc/testsuite:
	* gcc.c-torture/unsorted/unsorted.exp, lib/file-format.exp: Fix
	spelling errors of "separate" as "seperate".

libffi:
	* src/x86/ffi.c: Fix spelling error of "separate" as "seperate".

libjava:
	* defineclass.cc, java/awt/image/ColorModel.java,
	java/awt/image/SampleModel.java, java/lang/Package.java,
	java/security/cert/X509Extension.java: Fix spelling errors of
	"separate" as "seperate", and corresponding spelling errors of
	related words.

libstdc++-v3:
	* docs/html/22_locale/locale.html, docs/html/faq/index.html: Fix
	spelling errors of "separate" as "seperate", and corresponding
	spelling errors of related words.
	* docs/html/faq/index.txt: Regenerate.

From-SVN: r46063
This commit is contained in:
Joseph Myers 2001-10-07 19:02:46 +01:00
parent 8b60264b0d
commit cc712abf04
27 changed files with 63 additions and 25 deletions

View File

@ -1,3 +1,7 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* acinclude.m4: Fix spelling error of "separate" as "seperate".
2001-05-22 Jason Merrill <jason_merrill@redhat.com>
* mt-linux (CXXFLAGS_FOR_TARGET): Lose -fvtable-thunks.

View File

@ -1071,7 +1071,7 @@ AC_DEFUN(CYG_AC_PATH_TKH, [
# Note the gross little conversion here of srcdir by cd'ing to the found
# directory. This converts the path from a relative to an absolute, so
# recursive cache variables for the path will work right. We check all
# the possible paths in one loop rather than many seperate loops to speed
# the possible paths in one loop rather than many separate loops to speed
# things up.
# the alternative search directory is involked by --with-tkinclude
#

View File

@ -1,3 +1,9 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* ChangeLog.2, c-decl.c, config/i386/i386.md, doc/gcc.texi, gcc.c,
genmultilib, toplev.c: Fix spelling errors of "separate" as
"seperate", and corresponding spelling errors of related words.
2001-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (expand_builtin_setjmp_receiver): Const-ify.

View File

@ -3491,7 +3491,7 @@ Sun Oct 31 20:42:17 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun Oct 31 13:32:15 CET 1999 Marc Lehmann <pcg@goof.com>
* toplev.c (rest_of_compilation): Seperate the setjmp/vfork clobber
* toplev.c (rest_of_compilation): Separate the setjmp/vfork clobber
warning from -Wuninitialized and put it under -W.
* function.c (uninitialized_vars_warning): Warn only when the
corresponding flag is set.

View File

@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
-- $Revision: 1.11 $
-- $Revision: 1.1 $
-- --
-- Copyright (C) 1991-2000 Florida State University --
-- --
@ -62,7 +62,7 @@ package body System.OS_Interface is
-- So we use the standard Ada Duration type which is implemented using
-- microseconds.
-- Shouldn't the timer be moved to a seperate package ???
-- Shouldn't the timer be moved to a separate package ???
type Timer is record
Handle : aliased HTIMER := NULLHANDLE;

View File

@ -1,3 +1,7 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* 5oosinte.adb: Fix spelling error of "separate" as "seperate".
2001-10-05 Geert Bosch (bosch@gnat.com)
* adaint.h: Small formatting fix.

View File

@ -5247,7 +5247,7 @@ parmlist_tags_warning ()
IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
else
{
/* For translation these need to be seperate warnings */
/* For translation these need to be separate warnings */
if (code == RECORD_TYPE)
warning ("anonymous struct declared inside parameter list");
else if (code == UNION_TYPE)

View File

@ -840,7 +840,7 @@
;; it to the specialized integer (18 entry) and fp (36 entry) schedulers.
;;
;; The load/store queue unit is not attached to the schedulers but
;; communicates with all the execution units seperately instead.
;; communicates with all the execution units separately instead.
(define_attr "athlon_decode" "direct,vector"
(cond [(eq_attr "type" "call,imul,idiv,other,multi,fcmov,fpspc,str,pop,cld,fcmov")

View File

@ -3244,7 +3244,7 @@ There are also header files @file{tree.h} and @file{tree.def}
which define the format of the tree representation.
C preprocessing, for language front ends, that want or require it, is
performed by cpplib, which is covered in seperate documentation. In
performed by cpplib, which is covered in separate documentation. In
particular, the internals are covered in @xref{Top, ,Cpplib internals,
cppinternals, Cpplib Internals}.

View File

@ -3445,7 +3445,7 @@ process_command (argc, argv)
len = strlen (value);
/* Catch the case where the user has forgotten to append a
directory seperator to the path. Note, they may be using
directory separator to the path. Note, they may be using
-B to add an executable name prefix, eg "i386-elf-", in
order to distinguish between multiple installations of
GCC in the same directory. Hence we must check to see

View File

@ -57,8 +57,8 @@
# the compiler similar to exceptions. The difference being that exclusions
# allow matching default options that genmultilib does not know about and
# is done at runtime as opposed to being sorted out at compile time.
# Each element in the list is a seperate exclusion rule. Each rule is
# a list of options (sans preceding '-') seperated by a '/'. The options
# Each element in the list is a separate exclusion rule. Each rule is
# a list of options (sans preceding '-') separated by a '/'. The options
# on the rule are grouped as an AND operation, and all options much match
# for the rule to exclude a set. Options can be preceded with a '!' to
# match a logical NOT.

View File

@ -1,3 +1,8 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.c-torture/unsorted/unsorted.exp, lib/file-format.exp: Fix
spelling errors of "separate" as "seperate".
2001-10-05 Alexandre Oliva <aoliva@redhat.com>
* gcc.c-torture/execute/20010122-1.c: Don't assume alloca() is

View File

@ -35,7 +35,7 @@ load_lib c-torture.exp
# This loop will run c-torture on any *.c file found in this directory.
# If a *.c has a corresponding *.exp file, then the test is skipped as
# as the *.exp will drive the test itself. It is done this way so that
# generic tests do not need a seperate .exp for it. Only the tests that
# generic tests do not need a separate .exp for it. Only the tests that
# require unique options need their own .exp file.
#

View File

@ -19,7 +19,7 @@
# This file defines a proc for determining the file format in use by the
# target. This is useful for tests that are only supported by certain file
# formats. This procedure is defined in a seperate file so that it can be
# formats. This procedure is defined in a separate file so that it can be
# included by other expect library files.
proc gcc_target_object_format { } {

View File

@ -2728,7 +2728,7 @@ rest_of_compilation (decl)
DECL_DEFER_OUTPUT (decl) = 1;
if (DECL_INLINE (decl))
/* DWARF wants seperate debugging info for abstract and
/* DWARF wants separate debugging info for abstract and
concrete instances of all inline functions, including those
declared inline but not inlined, and those inlined even
though they weren't declared inline. Conveniently, that's

View File

@ -1,3 +1,7 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* src/x86/ffi.c: Fix spelling error of "separate" as "seperate".
2001-07-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* src/x86/sysv.S: Avoid gas-only .balign directive.

View File

@ -426,7 +426,7 @@ ffi_prep_raw_closure (ffi_raw_closure* closure,
FFI_ASSERT (cif->abi == FFI_SYSV);
// we currently don't support certain kinds of arguments for raw
// closures. This should be implemented by a seperate assembly language
// closures. This should be implemented by a separate assembly language
// routine, since it would require argument processing, something we
// don't do now for performance.

View File

@ -1,3 +1,11 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* defineclass.cc, java/awt/image/ColorModel.java,
java/awt/image/SampleModel.java, java/lang/Package.java,
java/security/cert/X509Extension.java: Fix spelling errors of
"separate" as "seperate", and corresponding spelling errors of
related words.
2001-10-05 Tom Tromey <tromey@redhat.com>
* java/text/DecimalFormat.java (format): Use localized minus sign

View File

@ -46,7 +46,7 @@ static _Jv_Utf8Const *clinit_name = _Jv_makeUtf8Const ("<clinit>", 8);
static _Jv_Utf8Const *init_name = _Jv_makeUtf8Const ("<init>", 6);
// these go in some seperate functions, to avoid having _Jv_InitClass
// these go in some separate functions, to avoid having _Jv_InitClass
// inserted all over the place.
static void throw_internal_error (char *msg)
__attribute__ ((__noreturn__));

View File

@ -39,7 +39,7 @@ import gnu.gcj.awt.Buffers;
* <li>arrays of unnormalized component samples of single pixel: these
* samples are scaled and multiplied according to the color model, but
* is otherwise not packed or encoded. Each element of the array is one
* seperate component sample. The color model only operate on the
* separate component sample. The color model only operate on the
* components from one pixel at a time, but using offsets, allows
* manipulation of arrays that contain the components of more than one
* pixel.</li>
@ -337,7 +337,7 @@ public abstract class ColorModel implements Transparency
* @return arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
* as a seperate element in the array.
* as a separate element in the array.
*/
public int[] getComponents(int pixel, int[] components, int offset) {
// FIXME: implement
@ -358,7 +358,7 @@ public abstract class ColorModel implements Transparency
* @return arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
* as a seperate element in the array.
* as a separate element in the array.
*/
public int[] getComponents(Object pixel, int[] components, int offset)
{
@ -429,7 +429,7 @@ public abstract class ColorModel implements Transparency
* @param arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
* as a seperate element in the array.
* as a separate element in the array.
*
* @return pixel value encoded according to the color model.
*/

View File

@ -80,7 +80,7 @@ public abstract class SampleModel
*
* This method is provided as a faster alternative to getPixel(),
* that can be used when there is no need to decode the pixel into
* seperate sample values.
* separate sample values.
*
* @param obj An array to return the pixel data in. If null, an
* array of the right type and size will be created.

View File

@ -44,7 +44,7 @@ import java.util.StringTokenizer;
* specification as implemented by a package. A package is considered
* compatible with another version if the version of the specification is
* equal or higher then the requested version. Version numbers are represented
* as strings of positive numbers seperated by dots (e.g. "1.2.0").
* as strings of positive numbers separated by dots (e.g. "1.2.0").
* The first number is called the major number, the second the minor,
* the third the micro, etc. A version is considered higher then another
* version if it has a bigger major number then the another version or when

View File

@ -95,7 +95,7 @@ public interface X509Extension
/**
Returns the DER encoded OCTET string for the specified
extension value identified by a OID. The OID is a string
of number seperated by periods. Ex: 12.23.45.67
of number separated by periods. Ex: 12.23.45.67
*/
public byte[] getExtensionValue(String oid);

View File

@ -1,3 +1,10 @@
2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
* docs/html/22_locale/locale.html, docs/html/faq/index.html: Fix
spelling errors of "separate" as "seperate", and corresponding
spelling errors of related words.
* docs/html/faq/index.txt: Regenerate.
2001-10-05 Phil Edwards <pme@gcc.gnu.org>
* config/cpu/alpha/bits/atomicity.h (__compare_and_swap): Remove

View File

@ -48,7 +48,7 @@ class facet
Facets actually implement locale functionality. For instance, a facet
called numpunct is the data objects that can be used to query for the
thousands seperator is in the German locale.
thousands separator is in the German locale.
Literally, a facet is strictly defined:
- containing

View File

@ -381,7 +381,7 @@ which is no longer available, thanks deja...-->
<p>Please read
<a href="http://gcc.gnu.org/install/configure.html">the configuration
instructions for GCC</a>,
specifically the part about configuring in a seperate build directory,
specifically the part about configuring in a separate build directory,
and how strongly recommended it is. Building in the source directory
is fragile, is rarely tested, and tends to break, as in this case.
Work has already gone into the source tree to make this less painful

View File

@ -298,7 +298,7 @@
being found.
Please read [61]the configuration instructions for GCC, specifically
the part about configuring in a seperate build directory, and how
the part about configuring in a separate build directory, and how
strongly recommended it is. Building in the source directory is
fragile, is rarely tested, and tends to break, as in this case. Work
has already gone into the source tree to make this less painful for