diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-13 12:42:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-13 12:42:56 (GMT) |
commit | 24ce75e998f13506548f2bebeb361405aa16546f (patch) | |
tree | 50e4c4e1a2e2cdb5292c89532222f7ecef015a7f /doc | |
parent | 923c6db1585b8fb8e69b0733b11a12f3149adf2d (diff) | |
parent | aaebb1c79e1e2cc24890642ed96b6c020bcebefc (diff) | |
download | tcl-24ce75e998f13506548f2bebeb361405aa16546f.zip tcl-24ce75e998f13506548f2bebeb361405aa16546f.tar.gz tcl-24ce75e998f13506548f2bebeb361405aa16546f.tar.bz2 |
merge trunk
update dde doc
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dde.n | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -83,9 +83,11 @@ asynchronous invocation. The command returns an error message if the script did not run, unless the \fB\-async\fR flag was used, in which case the command returns immediately with no error. .VS 8.6 -The \fB\-binary\fR option treats \fIdata\fR as binary data, otherwise an utf-8 -string is sent. Combining \fB-binary\fR with the result of -\fBencoding convertto\fR may be used to send data in arbitrary encodings. +Without the \fB\-binary\fR option all data will be sent in unicode. For +dde clients which don't implement the CF_UNICODE clipboard format, this +will automatically be translated to the system encoding. You can use +the \fB\-binary\fR option in combination with the result of +\fBencoding convertto\fR to send data in any other encoding. .VE 8.6 .TP \fBdde poke ?\fB\-binary\fR? \fIservice topic item data\fR @@ -98,8 +100,11 @@ on. The \fIitem\fR is also application specific and is often not used, but it must always be non-null. The \fIdata\fR field is given to the remote application. .VS 8.6 -The \fB\-binary\fR option treats \fIdata\fR as binary data, otherwise an utf-8 -string is sent. +Without the \fB\-binary\fR option all data will be sent in unicode. For +dde clients which don't implement the CF_UNICODE clipboard format, this +will automatically be translated to the system encoding. You can use +the \fB\-binary\fR option in combination with the result of +\fBencoding convertto\fR to send data in any other encoding. .VE 8.6 .TP \fBdde request\fR ?\fB\-binary\fR? \fIservice topic item\fR |