mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 02:08:17 +00:00
fileio: Fix PVS/V547: split is not used
This is removed functionality, specifically no longer supported 16-bit integers.
This commit is contained in:
@@ -287,7 +287,6 @@ readfile (
|
|||||||
int skip_read = false;
|
int skip_read = false;
|
||||||
context_sha256_T sha_ctx;
|
context_sha256_T sha_ctx;
|
||||||
int read_undo_file = FALSE;
|
int read_undo_file = FALSE;
|
||||||
int split = 0; /* number of split lines */
|
|
||||||
linenr_T linecnt;
|
linenr_T linecnt;
|
||||||
int error = FALSE; /* errors encountered */
|
int error = FALSE; /* errors encountered */
|
||||||
int ff_error = EOL_UNKNOWN; /* file format with errors */
|
int ff_error = EOL_UNKNOWN; /* file format with errors */
|
||||||
@@ -1822,10 +1821,6 @@ failed:
|
|||||||
STRCAT(IObuff, _("[CR missing]"));
|
STRCAT(IObuff, _("[CR missing]"));
|
||||||
c = TRUE;
|
c = TRUE;
|
||||||
}
|
}
|
||||||
if (split) {
|
|
||||||
STRCAT(IObuff, _("[long lines split]"));
|
|
||||||
c = TRUE;
|
|
||||||
}
|
|
||||||
if (notconverted) {
|
if (notconverted) {
|
||||||
STRCAT(IObuff, _("[NOT converted]"));
|
STRCAT(IObuff, _("[NOT converted]"));
|
||||||
c = TRUE;
|
c = TRUE;
|
||||||
|
Reference in New Issue
Block a user