From 89dca6779f4cdb61edef4b9e7ab7c942964f620d Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Mon, 3 Jun 2024 20:06:48 +0000 Subject: typo --- generic/tclGetDate.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index bfe1663..211fe83 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -59,7 +59,7 @@ #include "tclDate.h" #define YYMALLOC ckalloc -#define YYFREE(x) (ckree((void*) (x))) +#define YYFREE(x) (ckfree((void*) (x))) #define EPOCH 1970 #define START_OF_TIME 1902 -- cgit v0.12 From 8bdd215c81ab0ef9f8c3f02a41030de71fab794b Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Mon, 3 Jun 2024 20:16:03 +0000 Subject: Remove outdated parts of documentation --- doc/Access.3 | 2 +- doc/expr.n | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/doc/Access.3 b/doc/Access.3 index 5a29ec2..80b76a4 100644 --- a/doc/Access.3 +++ b/doc/Access.3 @@ -32,7 +32,7 @@ The structure that contains the result. .BE .SH DESCRIPTION .PP -As of Tcl 8.4, the object-based APIs \fBTcl_FSAccess\fR and \fBTcl_FSStat\fR +The object-based APIs \fBTcl_FSAccess\fR and \fBTcl_FSStat\fR should be used in preference to \fBTcl_Access\fR and \fBTcl_Stat\fR, wherever possible. Those functions also support Tcl's virtual filesystem layer, which these do not. diff --git a/doc/expr.n b/doc/expr.n index 72f914a..0d0d9c3 100644 --- a/doc/expr.n +++ b/doc/expr.n @@ -334,14 +334,6 @@ See the \fBmathfunc\fR(n) documentation for the math functions that are available by default. .SS "TYPES, OVERFLOW, AND PRECISION" .PP -When needed to guarantee exact performance, internal computations involving -integers use the LibTomMath multiple precision integer library. In Tcl releases -prior to 8.5, integer calculations were performed using one of the C types -\fIlong int\fR or \fITcl_WideInt\fR, causing implicit range truncation -in those calculations where values overflowed the range of those types. -Any code that relied on these implicit truncations should instead call -\fBwide()\fR, which does truncate. -.PP Internal floating-point computations are performed using the \fIdouble\fR C type. When converting a string to floating-point value, exponent overflow is -- cgit v0.12