mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
*: Fix clint errors
This commit is contained in:
parent
25f669049c
commit
25c6ac1af6
@ -110,7 +110,7 @@ bool try_end(Error *err)
|
|||||||
{
|
{
|
||||||
// Note: all globals manipulated here should be saved/restored in
|
// Note: all globals manipulated here should be saved/restored in
|
||||||
// try_enter/try_leave.
|
// try_enter/try_leave.
|
||||||
--trylevel;
|
trylevel--;
|
||||||
|
|
||||||
// Without this it stops processing all subsequent VimL commands and
|
// Without this it stops processing all subsequent VimL commands and
|
||||||
// generates strange error messages if I e.g. try calling Test() in a
|
// generates strange error messages if I e.g. try calling Test() in a
|
||||||
|
@ -564,7 +564,7 @@ static void discard_exception(except_T *excp, int was_finished)
|
|||||||
*/
|
*/
|
||||||
void discard_current_exception(void)
|
void discard_current_exception(void)
|
||||||
{
|
{
|
||||||
discard_exception(current_exception, FALSE);
|
discard_exception(current_exception, false);
|
||||||
// Note: all globals manipulated here should be saved/restored in
|
// Note: all globals manipulated here should be saved/restored in
|
||||||
// try_enter/try_leave.
|
// try_enter/try_leave.
|
||||||
current_exception = NULL;
|
current_exception = NULL;
|
||||||
|
@ -2321,7 +2321,7 @@ enum { MAX_CB_ERRORS = 1 };
|
|||||||
|
|
||||||
/// Color command-line
|
/// Color command-line
|
||||||
///
|
///
|
||||||
/// Should use built-in command parser or user-specified one. Currently only the
|
/// Should use built-in command parser or user-specified one. Currently only the
|
||||||
/// latter is supported.
|
/// latter is supported.
|
||||||
///
|
///
|
||||||
/// Operates on ccline, saving results to ccline_colors.
|
/// Operates on ccline, saving results to ccline_colors.
|
||||||
|
Loading…
Reference in New Issue
Block a user