ctags: Avoid unnecessary and hard-to-read use of the comma operator
Closes #1074. X-Universal-CTags-Commit-ID: 91c6773373864da345a7a9e0f5bd01a25588471c
This commit is contained in:
parent
93977f4ad1
commit
a7570e84f0
@ -203,7 +203,8 @@ static void readIdentifier (int c, vString *const name)
|
||||
do
|
||||
{
|
||||
vStringPut (name, c);
|
||||
} while (c = fileGetc (), (c != EOF && isident (c)));
|
||||
c = fileGetc ();
|
||||
} while (c != EOF && isident (c));
|
||||
fileUngetc (c);
|
||||
vStringTerminate (name);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user