diff options
author | ZyX <kp-pav@yandex.ru> | 2018-04-22 19:32:17 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2018-04-22 19:32:17 +0300 |
commit | d42f934bcb3e9e876e5e7ba0ab5cd824175fd10c (patch) | |
tree | a3bfe334cd8891901c97f75f0dfc4366c5906caa /src/nvim/globals.h | |
parent | adfc1212b57af759af2d67db399916f13b1cc2b0 (diff) | |
download | rneovim-d42f934bcb3e9e876e5e7ba0ab5cd824175fd10c.tar.gz rneovim-d42f934bcb3e9e876e5e7ba0ab5cd824175fd10c.tar.bz2 rneovim-d42f934bcb3e9e876e5e7ba0ab5cd824175fd10c.zip |
screen: Get rid of ScreenLines2 as it is no longer used
Should also fix some PVS warnings in process.
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 400f46eb79..7a1ce46ba4 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -158,10 +158,6 @@ EXTERN u8char_T *ScreenLinesC[MAX_MCO]; /* composing characters */ EXTERN int Screen_mco INIT(= 0); /* value of p_mco used when allocating ScreenLinesC[] */ -/* Only used for euc-jp: Second byte of a character that starts with 0x8e. - * These are single-width. */ -EXTERN schar_T *ScreenLines2 INIT(= NULL); - EXTERN int screen_Rows INIT(= 0); /* actual size of ScreenLines[] */ EXTERN int screen_Columns INIT(= 0); /* actual size of ScreenLines[] */ |