diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-01-25 17:50:00 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-01-25 17:50:00 (GMT) |
commit | 2f4b99c2d164ebbc4b182ae7eb1f0d635aea6b87 (patch) | |
tree | 8e669fafc852c6743d5f926fabcf25a5d4155496 /doc/send.n | |
parent | dbd87b5ee2ea675c3ad1c2c74c48c8523498693e (diff) | |
download | tk-2f4b99c2d164ebbc4b182ae7eb1f0d635aea6b87.zip tk-2f4b99c2d164ebbc4b182ae7eb1f0d635aea6b87.tar.gz tk-2f4b99c2d164ebbc4b182ae7eb1f0d635aea6b87.tar.bz2 |
Another round of small fixes, especially spelling errors...
Diffstat (limited to 'doc/send.n')
-rw-r--r-- | doc/send.n | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -30,21 +30,27 @@ command to be executed, just as for the \fBeval\fR command. If the initial arguments of the command begin with .QW \- they are treated as options. The following options are currently defined: +.\" OPTION: -async .TP \fB\-async\fR +. Requests asynchronous invocation. In this case the \fBsend\fR command will complete immediately without waiting for \fIcmd\fR to complete in the target application; no result will be available and errors in the sent command will be ignored. If the target application is in the same process as the sending application then the \fB\-async\fR option is ignored. +.\" OPTION: -displayof .TP \fB\-displayof\fI pathName\fR +. Specifies that the target application's main window is on the display of the window given by \fIpathName\fR, instead of the display containing the application's main window. +.\" OPTION: -- .TP \fB\-\|\-\fR +. Serves no purpose except to terminate the list of options. This option is needed only if \fIapp\fR could contain a leading .QW \- @@ -90,7 +96,7 @@ This script fragment can be used to make an application that only runs once on a particular display. .CS if {[tk appname FoobarApp] ne "FoobarApp"} { - \fBsend\fR \-async FoobarApp RemoteStart $argv + \fBsend\fR -async FoobarApp RemoteStart $argv exit } # The command that will be called remotely, which raises |