mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
Improve comments and fix ascii_* attributes
This commit is contained in:
@@ -7138,9 +7138,10 @@ int highlight_changed(void)
|
||||
*/
|
||||
attr = 0;
|
||||
bool colon = false;
|
||||
for (; *p && *p != ','; ++p) { /* parse upto comma */
|
||||
if (ascii_iswhite(*p)) /* ignore white space */
|
||||
for (; *p && *p != ','; ++p) { // parse upto comma
|
||||
if (ascii_iswhite(*p)) { // ignore white space
|
||||
continue;
|
||||
}
|
||||
|
||||
if (colon) /* Combination with ':' is not allowed. */
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user