diff options
author | dgp <dgp@users.sourceforge.net> | 2003-04-11 20:49:50 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-04-11 20:49:50 (GMT) |
commit | 47554fcd67f382566a72813c4b11bda27ecfb201 (patch) | |
tree | 7db1303db34093aa5b7a152871db2616ecae2794 /doc/string.n | |
parent | 89975c594f663fa730e70a1d45ba4e4aedb9aed8 (diff) | |
download | tcl-47554fcd67f382566a72813c4b11bda27ecfb201.zip tcl-47554fcd67f382566a72813c4b11bda27ecfb201.tar.gz tcl-47554fcd67f382566a72813c4b11bda27ecfb201.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..30c5adb 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.17.2.1 2003/04/11 20:49:53 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 |