aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/charset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r--src/nvim/charset.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c
index 28463d9705..c37263c040 100644
--- a/src/nvim/charset.c
+++ b/src/nvim/charset.c
@@ -321,11 +321,6 @@ void trans_characters(char_u *buf, int bufsize)
}
}
-#if defined(FEAT_EVAL) \
- || defined(FEAT_TITLE) \
- || defined(FEAT_INS_EXPAND) \
- || defined(PROTO)
-
/// Translate a string into allocated memory, replacing special chars with
/// printable chars. Returns NULL when out of memory.
///
@@ -394,9 +389,6 @@ char_u *transstr(char_u *s)
return res;
}
-#endif // if defined(FEAT_EVAL) || defined(FEAT_TITLE)
- // || defined(FEAT_INS_EXPAND) || defined(PROTO)
-
/// Convert the string "str[orglen]" to do ignore-case comparing. Uses the
/// current locale.
///