Revert "#2132 Change (buffer, lines) fixer functions to (buffer, done, lines)"

This reverts commit f1ed654ca5.
This commit is contained in:
w0rp
2019-02-22 20:48:06 +00:00
parent 883978ece9
commit 89e5491862
9 changed files with 33 additions and 37 deletions

View File

@@ -23,7 +23,7 @@ Before:
return [{'lnum': 1, 'col': 1, 'text': 'xxx'}]
endfunction
function AddLine(buffer, done, lines) abort
function AddLine(buffer, lines) abort
return a:lines + ['x']
endfunction