mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 03:48:18 +00:00
vim-patch:8.1.0989: various small code ugliness
Problem: Various small code ugliness.
Solution: Remove pointless NULL checks. Fix function calls. Fix typos.
(Dominique Pelle, closes vim/vim#4060)
bdace838c6
This commit is contained in:
@@ -5895,7 +5895,7 @@ static void regdump(char_u *pattern, bt_regprog_T *r)
|
||||
fprintf(f, " count %" PRId64, (int64_t)OPERAND_MIN(s));
|
||||
s += 4;
|
||||
} else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL) {
|
||||
/* one int plus comperator */
|
||||
// one int plus comparator
|
||||
fprintf(f, " count %" PRId64, (int64_t)OPERAND_MIN(s));
|
||||
s += 5;
|
||||
}
|
||||
|
Reference in New Issue
Block a user