summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-09-03 09:38:50 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-09-03 09:38:50 (GMT)
commit5e4c825e430b217765b90433272022c2ab3a8e6e (patch)
tree69f6bb78f5b5a7b6a1db920b2fe8274900b3f914
parent6466c1152c321df4b1594ed29ea0b77acae33852 (diff)
downloadtcl-5e4c825e430b217765b90433272022c2ab3a8e6e.zip
tcl-5e4c825e430b217765b90433272022c2ab3a8e6e.tar.gz
tcl-5e4c825e430b217765b90433272022c2ab3a8e6e.tar.bz2
doc bugfix (bug #457435)
-rw-r--r--ChangeLog5
-rw-r--r--doc/ExprLongObj.36
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ab04c5..eee53b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-03 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+
+ * doc/ExprLongObj.3: Fixed error in documentation of argument type
+ to Tcl_ExprObj [Bug: 457435]
+
2001-09-02 David Gravereaux <davygrvy@pobox.com>
* win/tclWinThrd.c: Portability fix for Cygwin who's c-runtime,
diff --git a/doc/ExprLongObj.3 b/doc/ExprLongObj.3
index f1e500d..5892b4c 100644
--- a/doc/ExprLongObj.3
+++ b/doc/ExprLongObj.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: ExprLongObj.3,v 1.2 1998/09/14 18:39:48 stanton Exp $
+'\" RCS: @(#) $Id: ExprLongObj.3,v 1.3 2001/09/03 09:38:50 dkf Exp $
'\"
.so man.macros
.TH Tcl_ExprLongObj 3 8.0 Tcl "Tcl Library Procedures"
@@ -27,7 +27,7 @@ int
int
\fBTcl_ExprObj\fR(\fIinterp, objPtr, resultPtrPtr\fR)
.SH ARGUMENTS
-.AS Tcl_Interp *resultPtrPtr out
+.AS Tcl_Interp **resultPtrPtr out
.AP Tcl_Interp *interp in
Interpreter in whose context to evaluate \fIstring\fR or \fIobjPtr\fR.
.AP Tcl_Obj *objPtr in
@@ -41,7 +41,7 @@ expression.
.AP int *booleanPtr out
Pointer to location in which to store the 0/1 boolean value of the
expression.
-.AP Tcl_Obj *resultPtrPtr out
+.AP Tcl_Obj **resultPtrPtr out
Pointer to location in which to store a pointer to the object
that is the result of the expression.
.BE