Fix spelling mistakes.

This commit is contained in:
Nick Clifton
2011-06-02 13:43:24 +00:00
parent 4c422395e6
commit cc643b88f1
48 changed files with 6145 additions and 4684 deletions

View File

@@ -1,3 +1,12 @@
2011-06-02 Nick Clifton <nickc@redhat.com>
* resres.c: Fix spelling typo.
* windint.h: Likewise.
* windmc.c: Likewise.
* windres.c: Likewise.
* po/POTFILES.in: Regenerate.
* po/binutils.pot: Regenerate.
2011-06-01 Daniel Jacobowitz <drow@false.org>
* MAINTAINERS: Update my email address.

View File

@@ -181,6 +181,7 @@ NMEDIT = @NMEDIT@
NO_WERROR = @NO_WERROR@
OBJDUMP = @OBJDUMP@
OBJDUMP_DEFS = @OBJDUMP_DEFS@
OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@

View File

@@ -20,6 +20,8 @@ dlltool.h
dllwrap.c
dwarf.c
dwarf.h
elfcomm.c
elfcomm.h
elfedit.c
emul_aix.c
emul_vanilla.c
@@ -38,6 +40,8 @@ not-ranlib.c
not-strip.c
objcopy.c
objdump.c
objdump.h
od-xcoff.c
prdbg.c
rclex.c
rdcoff.c

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
/* resres.c: read_res_file and write_res_file implementation for windres.
Copyright 1998, 1999, 2001, 2002, 2005, 2007, 2008
Copyright 1998, 1999, 2001, 2002, 2005, 2007, 2008, 2011
Free Software Foundation, Inc.
Written by Anders Norlander <anorland@hem2.passagen.se>.
Rewritten by Kai Tietz, Onevision.
@@ -98,7 +98,7 @@ read_res_file (const char *fn)
off = 0;
if (! probe_binary (&wrbfd, flen))
set_windres_bfd_endianess (&wrbfd, ! target_is_bigendian);
set_windres_bfd_endianness (&wrbfd, ! target_is_bigendian);
skip_null_resource (&wrbfd, &off, flen);

View File

@@ -1,5 +1,5 @@
/* windint.h -- internal header file for windres program.
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007, 2011
Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
@@ -1083,6 +1083,6 @@ extern rc_uint_type windres_get_16 (windres_bfd *, const void *, rc_uint_type);
extern rc_uint_type windres_get_32 (windres_bfd *, const void *, rc_uint_type);
extern void set_windres_bfd (windres_bfd *, bfd *, asection *, rc_uint_type);
extern void set_windres_bfd_endianess (windres_bfd *, int);
extern void set_windres_bfd_endianness (windres_bfd *, int);
#endif

View File

@@ -1,5 +1,5 @@
/* windmc.c -- a program to compile Windows message files.
Copyright 2007, 2008, 2009, 2010
Copyright 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
@@ -205,7 +205,7 @@ usage (FILE *stream, int status)
-C --codepage_in=<val> Set codepage when reading mc text file\n\
-d --decimal_values Print values to text files decimal\n\
-e --extension=<extension> Set header extension used on export header file\n\
-F --target <target> Specify output target for endianess.\n\
-F --target <target> Specify output target for endianness.\n\
-h --headerdir=<directory> Set the export directory for headers\n\
-u --unicode_in Read input file as UTF16 file\n\
-U --unicode_out Write binary messages as UFT16\n\
@@ -231,7 +231,7 @@ usage (FILE *stream, int status)
}
static void
set_endianess (bfd *abfd, const char *target)
set_endianness (bfd *abfd, const char *target)
{
const bfd_target *target_vec;
@@ -239,7 +239,7 @@ set_endianess (bfd *abfd, const char *target)
target_vec = bfd_get_target_info (target, abfd, &target_is_bigendian, NULL,
&def_target_arch);
if (! target_vec)
fatal ("Can't detect target endianess and architecture.");
fatal ("Can't detect target endianness and architecture.");
if (! def_target_arch)
fatal ("Can't detect architecture.");
}
@@ -1054,7 +1054,7 @@ main (int argc, char **argv)
++optind;
}
set_endianess (NULL, target);
set_endianness (NULL, target);
if (input_filename == NULL)
{

View File

@@ -54,7 +54,7 @@ int verbose = 0;
int target_is_bigendian = 0;
const char *def_target_arch;
static void set_endianess (bfd *, const char *);
static void set_endianness (bfd *, const char *);
/* An enumeration of format types. */
@@ -1049,7 +1049,7 @@ main (int argc, char **argv)
output_format = format_from_filename (output_filename, 0);
}
set_endianess (NULL, target);
set_endianness (NULL, target);
/* Read the input file. */
switch (input_format)
@@ -1098,7 +1098,7 @@ main (int argc, char **argv)
}
static void
set_endianess (bfd *abfd, const char *target)
set_endianness (bfd *abfd, const char *target)
{
const bfd_target *target_vec;
@@ -1106,7 +1106,7 @@ set_endianess (bfd *abfd, const char *target)
target_vec = bfd_get_target_info (target, abfd, &target_is_bigendian, NULL,
&def_target_arch);
if (! target_vec)
fatal ("Can't detect target endianess and architecture.");
fatal ("Can't detect target endianness and architecture.");
if (! def_target_arch)
fatal ("Can't detect architecture.");
}
@@ -1127,7 +1127,7 @@ windres_open_as_binary (const char *filename, int rdmode)
}
void
set_windres_bfd_endianess (windres_bfd *wrbfd, int is_bigendian)
set_windres_bfd_endianness (windres_bfd *wrbfd, int is_bigendian)
{
assert (!! wrbfd);
switch (WR_KIND(wrbfd))