0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.2351

Problem:    Netbeans test fails when run from unpacked MS-Windows sources.
Solution:   Open README.txt instead of Makefile.
This commit is contained in:
Bram Moolenaar
2016-09-09 15:31:34 +02:00
parent cf703fe9d6
commit ff330ff2c4
3 changed files with 8 additions and 6 deletions

View File

@@ -42,10 +42,10 @@ class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
myfile.write(received)
response = ''
if received.find('Makefile') > 0:
if received.find('README.txt') > 0:
name = received.split('"')[1]
response = '5:putBufferNumber!33 "' + name + '"\n'
response += '5:setDot!1 2/19\n'
response += '5:setDot!1 3/19\n'
elif received.find('disconnect') > 0:
# we're done
self.server.shutdown()