mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
Remove NUL macro
This commit is contained in:

committed by
Thiago de Arruda

parent
046debb935
commit
2e4613aecc
@@ -131,10 +131,10 @@
|
||||
* get second or third byte when translating special key code into three bytes
|
||||
*/
|
||||
#define K_SECOND(c) ((c) == K_SPECIAL ? KS_SPECIAL : (c) == \
|
||||
NUL ? KS_ZERO : KEY2TERMCAP0(c))
|
||||
'\0' ? KS_ZERO : KEY2TERMCAP0(c))
|
||||
|
||||
#define K_THIRD(c) (((c) == K_SPECIAL || (c) == \
|
||||
NUL) ? KE_FILLER : KEY2TERMCAP1(c))
|
||||
'\0') ? KE_FILLER : KEY2TERMCAP1(c))
|
||||
|
||||
/*
|
||||
* get single int code from second byte after K_SPECIAL
|
||||
|
Reference in New Issue
Block a user