mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +00:00
Improve comments and fix ascii_* attributes
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user