unused macros: Remove a five unused macros. (#13517)

Removes:
- GET_CHARTAB
- PRT_PS_DEFAULT_BUFFER_SIZE
- key_t
- PROP_MASK
- SCTX_INIT

Referring #13505.
This commit is contained in:
Edwin Pujols
2020-12-11 20:41:20 -04:00
committed by GitHub
parent f2ec058602
commit a82bcf9d9c
4 changed files with 0 additions and 7 deletions

View File

@@ -45,8 +45,6 @@ static bool chartab_initialized = false;
(buf)->b_chartab[(unsigned)(c) >> 6] &= ~(1ull << ((c) & 0x3f))
#define GET_CHARTAB_TAB(chartab, c) \
((chartab)[(unsigned)(c) >> 6] & (1ull << ((c) & 0x3f)))
#define GET_CHARTAB(buf, c) \
GET_CHARTAB_TAB((buf)->b_chartab, c)
// Table used below, see init_chartab() for an explanation
static char_u g_chartab[256];