Fix spurious warning about missing newline at EOF

C requires a newline at the end of any file, and clang may warn if it's
missing. Vim always saves one to disk, and we should mimic this.
This commit is contained in:
Sidney San Martín 2015-04-14 10:23:35 -07:00 committed by Sidney San Martín
parent bcfc4f006d
commit 0e9324d012

View File

@ -100,7 +100,8 @@ def GetUnsavedAndCurrentBufferData():
continue continue
buffers_data[ GetBufferFilepath( buffer_object ) ] = { buffers_data[ GetBufferFilepath( buffer_object ) ] = {
'contents': '\n'.join( buffer_object ), # Add a newline to match what gets saved to disk. See #1455 for details.
'contents': '\n'.join( buffer_object ) + '\n',
'filetypes': FiletypesForBuffer( buffer_object ) 'filetypes': FiletypesForBuffer( buffer_object )
} }