From a4697453384c65cc45d86f57bb334ed728dfc9dc Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 4 Apr 2024 06:11:17 +0800 Subject: vim-patch:9.1.0259: Normal mode TextChanged isn't tested properly (#28167) Problem: Normal mode TextChanged isn't tested properly. Solution: Combine Test_Changed_ChangedI() and Test_Changed_ChangedI_2() and also run it on Windows. Fix a typo in main.c. (zeertzjq) closes: vim/vim#14396 https://github.com/vim/vim/commit/c422662933275484e61af79d8148898337a5c38e --- src/nvim/state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/state.c b/src/nvim/state.c index baa1e75775..993db255de 100644 --- a/src/nvim/state.c +++ b/src/nvim/state.c @@ -289,7 +289,7 @@ static bool is_safe_now(void) && !debug_mode; } -/// Trigger SafeState if currently in s safe state, that is "safe" is TRUE and +/// Trigger SafeState if currently in a safe state, that is "safe" is true and /// there is no typeahead. void may_trigger_safestate(bool safe) { -- cgit