summaryrefslogtreecommitdiffstats
path: root/win/tclWinConsole.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-06-23 21:47:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-06-23 21:47:41 (GMT)
commit17d4aee3e5d53fff38c2f5b3320feb6aae327e2b (patch)
tree89cb34aa92980cc3514e7459071c03ff00b4dc10 /win/tclWinConsole.c
parent7cd09ac45001b00f1ea4a4e82eee8d78484c7822 (diff)
downloadtcl-17d4aee3e5d53fff38c2f5b3320feb6aae327e2b.zip
tcl-17d4aee3e5d53fff38c2f5b3320feb6aae327e2b.tar.gz
tcl-17d4aee3e5d53fff38c2f5b3320feb6aae327e2b.tar.bz2
Registry extension 1.3.0 -> 1.3.1: SendMessageTimeoutA -> SendMessageTimeout, so make sure only win32 UNICODE API is used.
Diffstat (limited to 'win/tclWinConsole.c')
-rw-r--r--win/tclWinConsole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinConsole.c b/win/tclWinConsole.c
index 7380003..ab55035 100644
--- a/win/tclWinConsole.c
+++ b/win/tclWinConsole.c
@@ -225,7 +225,7 @@ ReadConsoleBytes(
* success with ntchars == 0 and GetLastError() will be
* ERROR_OPERATION_ABORTED. We do not want to treat this case
* as EOF so we will loop around again. If no Ctrl signal handlers
- * have been established, the default signal OS handler in a separate
+ * have been established, the default signal OS handler in a separate
* thread will terminate the program. If a Ctrl signal handler
* has been established (through an extension for example), it
* will run and take whatever action it deems appropriate.