diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-28 12:25:53 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-28 12:25:53 (GMT) |
commit | b5e7e8747736a9f4f6e9c3ad6e1763b6a5900c9c (patch) | |
tree | d43ab195bbb59360312c2df24cc52e874efc6409 /doc/winfo.n | |
parent | bffdac3cbb0bfe12357f55cdc4fb24195743fbcf (diff) | |
download | tk-b5e7e8747736a9f4f6e9c3ad6e1763b6a5900c9c.zip tk-b5e7e8747736a9f4f6e9c3ad6e1763b6a5900c9c.tar.gz tk-b5e7e8747736a9f4f6e9c3ad6e1763b6a5900c9c.tar.bz2 |
More minor doc fixes
Diffstat (limited to 'doc/winfo.n')
-rw-r--r-- | doc/winfo.n | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/winfo.n b/doc/winfo.n index ce79778..76f29c3 100644 --- a/doc/winfo.n +++ b/doc/winfo.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: winfo.n,v 1.6 2004/06/30 22:17:59 dkf Exp $ +'\" RCS: @(#) $Id: winfo.n,v 1.7 2004/10/28 12:25:53 dkf Exp $ '\" .so man.macros .TH winfo n 4.3 Tk "Tk Built-In Commands" @@ -332,9 +332,9 @@ has no border). .SH EXAMPLE Print where the mouse pointer is and what window it is currently over: .CS -lassign [\fBwinfo\fR pointerxy .] x y +lassign [\fBwinfo pointerxy\fR .] x y puts -nonewline "Mouse pointer at ($x,$y) which is " -set win [\fBwinfo\fR containing $x $y] +set win [\fBwinfo containing\fR $x $y] if {$win eq ""} { puts "over no window" } else { |