mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #8995 from wsdjeg/patch-1
Make neovim timer ID start from 1
This commit is contained in:
commit
ae8515a544
@ -496,7 +496,7 @@ typedef enum {
|
||||
#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
|
||||
valid character */
|
||||
|
||||
static uint64_t last_timer_id = 0;
|
||||
static uint64_t last_timer_id = 1;
|
||||
static PMap(uint64_t) *timers = NULL;
|
||||
|
||||
/// Dummy va_list for passing to vim_snprintf
|
||||
|
Loading…
Reference in New Issue
Block a user