about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-05-18 17:09:13 +0000
committerAndreas Jaeger <aj@suse.de>2000-05-18 17:09:13 +0000
commit600a745790b1848910aa8663a0d3478434ef86b3 (patch)
treef4418b0f9e09a7b9cc454b4155774382367a3872
parent1261b97d10f60dfc7acc534a065bbe6ceef99f4f (diff)
downloadglibc-600a745790b1848910aa8663a0d3478434ef86b3.tar.gz
glibc-600a745790b1848910aa8663a0d3478434ef86b3.tar.xz
glibc-600a745790b1848910aa8663a0d3478434ef86b3.zip
Update.
2000-05-18  Andreas Jaeger  <aj@suse.de>

	* manual/arith.texi (Parsing of Integers): Fix typo.
	Closes PR libc/1744, reported by blp@gnu.org.
-rw-r--r--ChangeLog5
-rw-r--r--manual/arith.texi2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 91e2c193fb..1b518e45fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-18  Andreas Jaeger  <aj@suse.de>
+
+	* manual/arith.texi (Parsing of Integers): Fix typo.
+	Closes PR libc/1744, reported by blp@gnu.org.
+
 2000-05-17  Jakub Jelinek  <jakub@redhat.com>
 
 	* sysdeps/arm/bits/huge_val.h (HUGE_VAL, HUGE_VALF): Add
diff --git a/manual/arith.texi b/manual/arith.texi
index 6c0402d680..511c7ce37f 100644
--- a/manual/arith.texi
+++ b/manual/arith.texi
@@ -2083,7 +2083,7 @@ digits begins with @samp{0} (specifying octal radix), or @samp{0x} or
 @samp{0X} (specifying hexadecimal radix); in other words, the same
 syntax used for integer constants in C.
 
-Otherwise @var{base} must have a value between @code{2} and @code{35}.
+Otherwise @var{base} must have a value between @code{2} and @code{36}.
 If @var{base} is @code{16}, the digits may optionally be preceded by
 @samp{0x} or @samp{0X}.  If base has no legal value the value returned
 is @code{0l} and the global variable @code{errno} is set to @code{EINVAL}.