diff options
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index ed320a4851..9ee2edc814 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3979,8 +3979,6 @@ static int ends_in_white(linenr_T lnum) if (*s == NUL) return FALSE; - /* Don't use STRLEN() inside ascii_iswhite(), SAS/C complains: "macro - * invocation may call function multiple times". */ l = STRLEN(s) - 1; return ascii_iswhite(s[l]); } |