summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2007-01-31 20:25:23 +0000
committerDJ Delorie <dj@delorie.com>2007-01-31 20:25:23 +0000
commit7b425ea5c5cd851409aeb640ea7b7281f6b3abbe (patch)
tree84df84891054c694bb10f60ed4f05d127630676d
parentc30d175d854dd5e80d9e66224b1d8df5cd9f91c6 (diff)
downloadbinutils-redhat-7b425ea5c5cd851409aeb640ea7b7281f6b3abbe.tar.gz
merge from gcc
-rw-r--r--libiberty/ChangeLog6
-rw-r--r--libiberty/choose-temp.c2
-rw-r--r--libiberty/functions.texi4
-rw-r--r--libiberty/hex.c2
4 files changed, 10 insertions, 4 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 4f23225cf7..8056887b29 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * hex.c: Fix typo.
+ * choose-temp.c: Likewise.
+ * functions.texi: Regenerate.
+
2007-01-31 Vladimir Prus <vladimir@codesourcery.com>
* pex-common.h (struct pex_obj): New fields
diff --git a/libiberty/choose-temp.c b/libiberty/choose-temp.c
index 4a26a827a2..b1c2e5b66b 100644
--- a/libiberty/choose-temp.c
+++ b/libiberty/choose-temp.c
@@ -46,7 +46,7 @@ find one. The current directory is chosen if all else fails so the
program is exited if a temporary directory can't be found (@code{mktemp}
fails). The buffer for the result is obtained with @code{xmalloc}.
-This function is provided for backwards compatability only. Its use is
+This function is provided for backwards compatibility only. Its use is
not recommended.
@end deftypefn
diff --git a/libiberty/functions.texi b/libiberty/functions.texi
index b791f23c1b..9f49ff484d 100644
--- a/libiberty/functions.texi
+++ b/libiberty/functions.texi
@@ -153,7 +153,7 @@ find one. The current directory is chosen if all else fails so the
program is exited if a temporary directory can't be found (@code{mktemp}
fails). The buffer for the result is obtained with @code{xmalloc}.
-This function is provided for backwards compatability only. Its use is
+This function is provided for backwards compatibility only. Its use is
not recommended.
@end deftypefn
@@ -420,7 +420,7 @@ or zero if it is not. Note that the value you pass will be cast to
@deftypefn Extension {unsigned int} hex_value (int @var{c})
Returns the numeric equivalent of the given character when interpreted
-as a hexidecimal digit. The result is undefined if you pass an
+as a hexadecimal digit. The result is undefined if you pass an
invalid hex digit. Note that the value you pass will be cast to
@code{unsigned char} within the macro.
diff --git a/libiberty/hex.c b/libiberty/hex.c
index 86ba0b5b87..5eeafdbd15 100644
--- a/libiberty/hex.c
+++ b/libiberty/hex.c
@@ -50,7 +50,7 @@ or zero if it is not. Note that the value you pass will be cast to
@deftypefn Extension {unsigned int} hex_value (int @var{c})
Returns the numeric equivalent of the given character when interpreted
-as a hexidecimal digit. The result is undefined if you pass an
+as a hexadecimal digit. The result is undefined if you pass an
invalid hex digit. Note that the value you pass will be cast to
@code{unsigned char} within the macro.