aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 7247c7e4d0..566a5ae9d6 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -585,8 +585,8 @@ EXTERN int vr_lines_changed INIT(= 0); // #Lines changed by "gR" so far
EXTERN int inhibit_delete_count INIT(= 0);
// These flags are set based upon 'fileencoding'.
-// Note that "enc_utf8" is also set for "unicode", because the characters are
-// internally stored as UTF-8 (to avoid trouble with NUL bytes).
+// The characters are internally stored as UTF-8
+// to avoid trouble with NUL bytes.
# define DBCS_JPN 932 // japan
# define DBCS_JPNU 9932 // euc-jp
# define DBCS_KOR 949 // korea
@@ -598,11 +598,6 @@ EXTERN int inhibit_delete_count INIT(= 0);
# define DBCS_2BYTE 1 // 2byte-
# define DBCS_DEBUG -1
-// mbyte flags that used to depend on 'encoding'. These are now deprecated, as
-// 'encoding' is always "utf-8". Code that use them can be refactored to
-// remove dead code.
-#define enc_utf8 true
-
/// Encoding used when 'fencs' is set to "default"
EXTERN char_u *fenc_default INIT(= NULL);