aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index dfe264b08c..f7e248dce9 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -832,7 +832,6 @@ retry:
}
-
#ifdef HAVE_ICONV
// Try using iconv() if we can't convert internally.
if (fio_flags == 0
@@ -1519,7 +1518,6 @@ rewind_retry:
try_mac = 1;
try_unix = 1;
for (; p >= ptr && *p != CAR; p--) {
- ;
}
if (p >= ptr) {
for (p = ptr; p < ptr + size; ++p) {
@@ -3083,7 +3081,6 @@ nobackup:
}
-
if (converted && wb_flags == 0) {
#ifdef HAVE_ICONV
// Use iconv() conversion when conversion is needed and it's not done
@@ -4250,7 +4247,6 @@ static int get_fio_flags(const char_u *name)
}
-
/*
* Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
* "size" must be at least 2.
@@ -5436,7 +5432,6 @@ char_u *vim_tempname(void)
}
-
/// Tries matching a filename with a "pattern" ("prog" is NULL), or use the
/// precompiled regprog "prog" ("pattern" is NULL). That avoids calling
/// vim_regcomp() often.