mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
lint
This commit is contained in:
@@ -1328,10 +1328,8 @@ int using_script(void)
|
||||
return scriptin[curscript] != NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* This function is called just before doing a blocking wait. Thus after
|
||||
* waiting 'updatetime' for a character to arrive.
|
||||
*/
|
||||
/// This function is called just before doing a blocking wait. Thus after
|
||||
/// waiting 'updatetime' for a character to arrive.
|
||||
void before_blocking(void)
|
||||
{
|
||||
updatescript(0);
|
||||
@@ -1340,13 +1338,11 @@ void before_blocking(void)
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* updatescipt() is called when a character can be written into the script file
|
||||
* or when we have waited some time for a character (c == 0)
|
||||
*
|
||||
* All the changed memfiles are synced if c == 0 or when the number of typed
|
||||
* characters reaches 'updatecount' and 'updatecount' is non-zero.
|
||||
*/
|
||||
/// updatescript() is called when a character can be written to the script file
|
||||
/// or when we have waited some time for a character (c == 0).
|
||||
///
|
||||
/// All the changed memfiles are synced if c == 0 or when the number of typed
|
||||
/// characters reaches 'updatecount' and 'updatecount' is non-zero.
|
||||
static void updatescript(int c)
|
||||
{
|
||||
static int count = 0;
|
||||
|
Reference in New Issue
Block a user