mirror of
https://github.com/vim/vim.git
synced 2025-09-07 22:03:36 -04:00
patch 7.4.1291
Problem: On MS-Windows the channel test server doesn't quit. Solution: Use return instead of break. (Ken Takata)
This commit is contained in:
parent
cbebd4879c
commit
b92abad0c5
@ -133,7 +133,7 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
|
||||
elif decoded[1] == '!quit!':
|
||||
# we're done
|
||||
self.server.shutdown()
|
||||
break
|
||||
return
|
||||
elif decoded[1] == '!crash!':
|
||||
# Crash!
|
||||
42 / 0
|
||||
|
@ -747,6 +747,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1291,
|
||||
/**/
|
||||
1290,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user