summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-07 09:53:17 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-07 09:53:17 (GMT)
commit833b02bc83665b70d5af4696ad54b3d83c51d11b (patch)
tree642ed2636020828fab12cbd46e3caf5de64b1f5a /doc
parent5c9968a001208bb4fc6d06ad040c28bd84b7831f (diff)
downloadtcl-833b02bc83665b70d5af4696ad54b3d83c51d11b.zip
tcl-833b02bc83665b70d5af4696ad54b3d83c51d11b.tar.gz
tcl-833b02bc83665b70d5af4696ad54b3d83c51d11b.tar.bz2
TIP #515 implementation: Level Value Reform
Diffstat (limited to 'doc')
-rw-r--r--doc/uplevel.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/uplevel.n b/doc/uplevel.n
index 4decc6d..cda1652 100644
--- a/doc/uplevel.n
+++ b/doc/uplevel.n
@@ -24,9 +24,9 @@ the result of that evaluation.
If \fIlevel\fR is an integer then
it gives a distance (up the procedure calling stack) to move before
executing the command. If \fIlevel\fR consists of \fB#\fR followed by
-a number then the number gives an absolute level number. If \fIlevel\fR
+a integer then the level gives an absolute level. If \fIlevel\fR
is omitted then it defaults to \fB1\fR. \fILevel\fR cannot be
-defaulted if the first \fIcommand\fR argument starts with a digit or \fB#\fR.
+defaulted if the first \fIcommand\fR argument is an integer or starts with \fB#\fR.
.PP
For example, suppose that procedure \fBa\fR was invoked
from top-level, and that it called \fBb\fR, and that \fBb\fR called \fBc\fR.