diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2003-05-07 21:30:12 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2003-05-07 21:30:12 (GMT) |
| commit | 855ba0c661853b2bb88f355df4145c71d0d27f1a (patch) | |
| tree | dd7b51d11eee16cd821acb72cfac47791ff73f3e | |
| parent | 701bde507daa8ba8adb7a8362db0a5cb8741fdf8 (diff) | |
| download | tcl-855ba0c661853b2bb88f355df4145c71d0d27f1a.zip tcl-855ba0c661853b2bb88f355df4145c71d0d27f1a.tar.gz tcl-855ba0c661853b2bb88f355df4145c71d0d27f1a.tar.bz2 | |
Fixed very strange language in the documentation for 'trace add execution'.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | doc/trace.n | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2003-05-07 Donal K. Fellows <fellowsd@cs.man.ac.uk> + * doc/trace.n: Fixed very strange language in the documentation + for 'trace add execution'. [Bug 729821] + * generic/tclCmdMZ.c (Tcl_TraceObjCmd): Made error message for 'trace info' more consistent with documentation. [Bug 706961] diff --git a/doc/trace.n b/doc/trace.n index 01c0327..8a89eda 100644 --- a/doc/trace.n +++ b/doc/trace.n @@ -6,7 +6,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: trace.n,v 1.13 2003/02/04 00:56:20 hobbs Exp $ +'\" RCS: @(#) $Id: trace.n,v 1.14 2003/05/07 21:30:13 dkf Exp $ '\" .so man.macros .TH trace n "8.4" Tcl "Tcl Built-In Commands" @@ -72,7 +72,8 @@ in which they appear. .TP \fBtrace add execution\fR \fIname ops command\fR Arrange for \fIcommand\fR to be executed whenever command \fIname\fR -is modified in one of the ways given by the list \fIops\fR. \fIName\fR will be +is executed, with traces occurring at the points indicated by the list +\fIops\fR. \fIName\fR will be resolved using the usual namespace resolution rules used by procedures. If the command does not exist, an error will be thrown. .RS |
