forked from aniani/vim
patch 7.4.1416
Problem: Using "u_char" intead of "char_u", which doesn't work everywhere. (Jörg Plate) Solution: Use "char_u" always.
This commit is contained in:
@@ -119,7 +119,7 @@
|
||||
#endif
|
||||
|
||||
/* Returns empty string if it is NULL. */
|
||||
#define EMPTY_IF_NULL(x) ((x) ? (x) : (u_char *)"")
|
||||
#define EMPTY_IF_NULL(x) ((x) ? (x) : (char_u *)"")
|
||||
|
||||
#ifdef FEAT_LANGMAP
|
||||
/*
|
||||
|
Reference in New Issue
Block a user