mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (rb_w32_write_console): now no need to check
ERROR_CALL_NOT_IMPLEMENTED because it is for old Win9X. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
693b335326
commit
b0b2df253f
2 changed files with 6 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Mar 8 17:33:38 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/win32.c (rb_w32_write_console): now no need to check
|
||||||
|
ERROR_CALL_NOT_IMPLEMENTED because it is for old Win9X.
|
||||||
|
|
||||||
Tue Mar 8 16:54:29 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
Tue Mar 8 16:54:29 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* win32/win32.c (rb_w32_write_console): stop the VT100 emulation if the
|
* win32/win32.c (rb_w32_write_console): stop the VT100 emulation if the
|
||||||
|
|
|
@ -7071,11 +7071,8 @@ rb_w32_write_console(uintptr_t strarg, int fd)
|
||||||
reslen = 0;
|
reslen = 0;
|
||||||
if (dwMode & 4) { /* ENABLE_VIRTUAL_TERMINAL_PROCESSING */
|
if (dwMode & 4) { /* ENABLE_VIRTUAL_TERMINAL_PROCESSING */
|
||||||
DWORD written;
|
DWORD written;
|
||||||
if (!WriteConsoleW(handle, ptr, len, &written, NULL)) {
|
if (!WriteConsoleW(handle, ptr, len, &written, NULL))
|
||||||
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
||||||
disable = TRUE;
|
|
||||||
reslen = (DWORD)-1L;
|
reslen = (DWORD)-1L;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
while (len > 0) {
|
while (len > 0) {
|
||||||
|
@ -7084,8 +7081,6 @@ rb_w32_write_console(uintptr_t strarg, int fd)
|
||||||
if (curlen > 0) {
|
if (curlen > 0) {
|
||||||
DWORD written;
|
DWORD written;
|
||||||
if (!WriteConsoleW(handle, ptr, curlen, &written, NULL)) {
|
if (!WriteConsoleW(handle, ptr, curlen, &written, NULL)) {
|
||||||
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
||||||
disable = TRUE;
|
|
||||||
reslen = (DWORD)-1L;
|
reslen = (DWORD)-1L;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue