diff options
author | dgp <dgp@users.sourceforge.net> | 2003-04-11 20:50:45 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-04-11 20:50:45 (GMT) |
commit | 1e3d8de94601b1efb0a694e0f756a0beeeded462 (patch) | |
tree | 262c9158ed0ab2883ffc3d0c5a9cbc70da00545c /doc/string.n | |
parent | 092f06de8fa11aaa44b5d6d0a127ca0d0f87703d (diff) | |
download | tcl-1e3d8de94601b1efb0a694e0f756a0beeeded462.zip tcl-1e3d8de94601b1efb0a694e0f756a0beeeded462.tar.gz tcl-1e3d8de94601b1efb0a694e0f756a0beeeded462.tar.bz2 |
* generic/tclCmdMZ.c (Tcl_StringObjCmd,STR_IS_INT): Corrected
inconsistent results of [string is integer] observed on systems
where sizeof(long) != sizeof(int). [Bug 718878]
* tests/string.test: Added tests for Bug 718878.
* doc/string.n: Clarified that [string is integer] accepts
32-bit integers.
Diffstat (limited to 'doc/string.n')
-rw-r--r-- | doc/string.n | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/string.n b/doc/string.n index c09c312..c5e09f1 100644 --- a/doc/string.n +++ b/doc/string.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: string.n,v 1.17 2002/07/05 07:23:45 hobbs Exp $ +'\" RCS: @(#) $Id: string.n,v 1.18 2003/04/11 20:50:47 dgp Exp $ '\" .so man.macros .TH string n 8.1 Tcl "Tcl Built-In Commands" @@ -119,7 +119,7 @@ false. .IP \fBgraph\fR 10 Any Unicode printing character, except space. .IP \fBinteger\fR 10 -Any of the valid forms for an integer in Tcl, with optional +Any of the valid forms for a 32-bit integer in Tcl, with optional surrounding whitespace. In case of under/overflow in the value, 0 is returned and the \fIvarname\fR will contain \-1. .IP \fBlower\fR 10 |