mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
*: Fix linter errors
This commit is contained in:
@@ -13006,7 +13006,7 @@ void ex_spellinfo(exarg_T *eap)
|
||||
}
|
||||
|
||||
msg_start();
|
||||
for (int lpi = 0; lpi < curwin->w_s->b_langp.ga_len && !got_int; ++lpi) {
|
||||
for (int lpi = 0; lpi < curwin->w_s->b_langp.ga_len && !got_int; lpi++) {
|
||||
langp_T *const lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi);
|
||||
msg_puts("file: ");
|
||||
msg_puts((const char *)lp->lp_slang->sl_fname);
|
||||
|
Reference in New Issue
Block a user