diff options
author | hobbs <hobbs> | 1999-10-05 22:47:04 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-10-05 22:47:04 (GMT) |
commit | c67d7bf369b87f7440411eb5c4ec8d5773ec1461 (patch) | |
tree | 5646f922262ffbf32320f68c25a6415d94f66da5 /win/tclWinSerial.c | |
parent | 0e113a9fa52d8d8f9c8be444d0e1a180084d6d8b (diff) | |
download | tcl-c67d7bf369b87f7440411eb5c4ec8d5773ec1461.zip tcl-c67d7bf369b87f7440411eb5c4ec8d5773ec1461.tar.gz tcl-c67d7bf369b87f7440411eb5c4ec8d5773ec1461.tar.bz2 |
* {win,mac,unix,tools,}/README:
* win/README.binary:
* win/makefile.vc:
* {win,unix}/configure.in:
* generic/tcl.h:
* library/init.tcl: updated to 8.3a1 from 8.2.0.
* win/tclWinReg.c: fixed registry command to properly 'get'
HKEY_PERFORMANCE_DATA root key data. Needs more work.
* win/tclWinSerial.c: changed SerialSetOptionProc to return
TCL_OK by default. (patch from Rolf Schroedter)
Diffstat (limited to 'win/tclWinSerial.c')
-rw-r--r-- | win/tclWinSerial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinSerial.c b/win/tclWinSerial.c index 67b29b4..42a18f6 100644 --- a/win/tclWinSerial.c +++ b/win/tclWinSerial.c @@ -10,7 +10,7 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * Changes by Rolf.Schroedter@dlr.de June 25-27, 1999 * - * RCS: @(#) $Id: tclWinSerial.c,v 1.7 1999/08/12 17:38:49 redman Exp $ + * RCS: @(#) $Id: tclWinSerial.c,v 1.8 1999/10/05 22:47:05 hobbs Exp $ */ #include "tclWinInt.h" @@ -1008,7 +1008,7 @@ SerialSetOptionProc(instanceData, interp, optionName, value) return Tcl_BadChannelOption(interp, optionName, "mode pollinterval"); } - return TCL_ERROR; + return TCL_OK; } /* |