mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
eval: encode: Fix NULL check for partial's name
This commit is contained in:
parent
33319b1bf0
commit
a083c85ae4
@ -319,7 +319,7 @@ int encode_read_from_list(ListReaderState *const state, char *const buf,
|
||||
do { \
|
||||
int i; \
|
||||
ga_concat(gap, "function("); \
|
||||
if (&pt->pt_name != NULL) { \
|
||||
if (pt->pt_name != NULL) { \
|
||||
size_t len; \
|
||||
char_u *p; \
|
||||
len = 3; \
|
||||
|
Loading…
Reference in New Issue
Block a user