mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
eval: Split and move dict_add_nr_str to typval.c
Function was split into tv_dict_add_nr() and tv_dict_add_str().
This commit is contained in:
@@ -356,9 +356,10 @@ int pat_has_uppercase(char_u *pat)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
char_u *last_csearch(void)
|
||||
const char *last_csearch(void)
|
||||
FUNC_ATTR_PURE FUNC_ATTR_WARN_UNUSED_RESULT
|
||||
{
|
||||
return lastc_bytes;
|
||||
return (const char *)lastc_bytes;
|
||||
}
|
||||
|
||||
int last_csearch_forward(void)
|
||||
|
Reference in New Issue
Block a user