mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
*: Partial string handling refactoring
Main points: - Replace `char_u` with `char` in some cases. - Remove `str[len] = NUL` hack in some cases when `str` may be considered `const`.
This commit is contained in:
@@ -2008,8 +2008,9 @@ static int cs_reset(exarg_T *eap)
|
||||
xfree(pplist);
|
||||
xfree(fllist);
|
||||
|
||||
if (p_csverbose)
|
||||
MSG_ATTR(_("All cscope databases reset"), hl_attr(HLF_R) | MSG_HIST);
|
||||
if (p_csverbose) {
|
||||
msg_attr(_("All cscope databases reset"), hl_attr(HLF_R) | MSG_HIST);
|
||||
}
|
||||
return CSCOPE_SUCCESS;
|
||||
} /* cs_reset */
|
||||
|
||||
|
Reference in New Issue
Block a user