summaryrefslogtreecommitdiffstats
path: root/doc/vwait.n
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-01-21 02:25:05 (GMT)
committerhobbs <hobbs>2000-01-21 02:25:05 (GMT)
commitdf89ccaf7788364be35910a9f84ba16a854d1643 (patch)
tree94a0577c57166ce7dc22c55e6e2f9d67f27c271c /doc/vwait.n
parentc03cc4dde2bd4373ddb6a9d3e04ff3172a16ba33 (diff)
downloadtcl-df89ccaf7788364be35910a9f84ba16a854d1643.zip
tcl-df89ccaf7788364be35910a9f84ba16a854d1643.tar.gz
tcl-df89ccaf7788364be35910a9f84ba16a854d1643.tar.bz2
* doc/tclvars.n: added definitions for tcl_(non)wordchars
* doc/vwait.n: added notes about requirement for vwait var being globally scoped [Bug: 3329]
Diffstat (limited to 'doc/vwait.n')
-rw-r--r--doc/vwait.n8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/vwait.n b/doc/vwait.n
index a355b54..b8864e1 100644
--- a/doc/vwait.n
+++ b/doc/vwait.n
@@ -4,10 +4,10 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: vwait.n,v 1.2 1998/09/14 18:39:56 stanton Exp $
+'\" RCS: @(#) $Id: vwait.n,v 1.3 2000/01/21 02:25:06 hobbs Exp $
'\"
.so man.macros
-.TH vwait n 7.5 Tcl "Tcl Built-In Commands"
+.TH vwait n 8.0 Tcl "Tcl Built-In Commands"
.BS
'\" Note: do not modify the .SH NAME line immediately below!
.SH NAME
@@ -23,7 +23,9 @@ the application if no events are ready. It continues processing
events until some event handler sets the value of variable
\fIvarName\fR. Once \fIvarName\fR has been set, the \fBvwait\fR
command will return as soon as the event handler that modified
-\fIvarName\fR completes.
+\fIvarName\fR completes. \fIvarName\fR must globally scoped
+(either with a call to \fBglobal\fR for the \fIvarName\fR, or with
+the full namespace path specification).
.PP
In some cases the \fBvwait\fR command may not return immediately
after \fIvarName\fR is set. This can happen if the event handler