summaryrefslogtreecommitdiffstats
path: root/doc/clipboard.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-28 10:22:50 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-28 10:22:50 (GMT)
commitbffdac3cbb0bfe12357f55cdc4fb24195743fbcf (patch)
tree4a0680cb493f74dee4162dbbed922841cdf25694 /doc/clipboard.n
parentf068b3c8aa0a0bfed87b981e99a3b096aed995d5 (diff)
downloadtk-bffdac3cbb0bfe12357f55cdc4fb24195743fbcf.zip
tk-bffdac3cbb0bfe12357f55cdc4fb24195743fbcf.tar.gz
tk-bffdac3cbb0bfe12357f55cdc4fb24195743fbcf.tar.bz2
Assorted minor documentation fixes
Diffstat (limited to 'doc/clipboard.n')
-rw-r--r--doc/clipboard.n10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/clipboard.n b/doc/clipboard.n
index 570a90a..d8f04a2 100644
--- a/doc/clipboard.n
+++ b/doc/clipboard.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: clipboard.n,v 1.8 2004/06/18 21:27:38 dkf Exp $
+'\" RCS: @(#) $Id: clipboard.n,v 1.9 2004/10/28 10:22:51 dkf Exp $
'\"
.so man.macros
.TH clipboard n 8.4 Tk "Tk Built-In Commands"
@@ -77,9 +77,9 @@ next argument will always be used as \fIdata\fR.
This feature may be convenient if, for example, \fIdata\fR starts
with a \fB\-\fR.
.RE
-.VS 8.4
.TP
\fBclipboard get\fR ?\fB\-displayof\fR \fIwindow\fR? ?\fB\-type\fR \fItype\fR?
+.VS 8.4
Retrieve data from the clipboard on \fIwindow\fR's display.
\fIwindow\fR defaults to ".". \fIType\fR specifies the form in which
the data is to be returned and should be an atom name such as STRING
@@ -89,15 +89,15 @@ equivalent to \fBselection get -selection CLIPBOARD\fR.
.SH EXAMPLES
Get the current contents of the clipboard.
.CS
-if {[catch {\fBclipboard\fR get} contents]} {
+if {[catch {\fBclipboard get\fR} contents]} {
# There were no clipboard contents at all
}
.CE
.PP
Set the clipboard to contain a fixed string.
.CS
-\fBclipboard\fR clear
-\fBclipboard\fR append "some fixed string"
+\fBclipboard clear\fR
+\fBclipboard append\fR "some fixed string"
.CE
.SH "SEE ALSO"