forked from aniani/vim
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:
@@ -133,7 +133,7 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
|
|||||||
elif decoded[1] == '!quit!':
|
elif decoded[1] == '!quit!':
|
||||||
# we're done
|
# we're done
|
||||||
self.server.shutdown()
|
self.server.shutdown()
|
||||||
break
|
return
|
||||||
elif decoded[1] == '!crash!':
|
elif decoded[1] == '!crash!':
|
||||||
# Crash!
|
# Crash!
|
||||||
42 / 0
|
42 / 0
|
||||||
|
@@ -747,6 +747,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1291,
|
||||||
/**/
|
/**/
|
||||||
1290,
|
1290,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user