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:
Erik de Castro Lopo 2016-06-24 03:00:49 +02:00 committed by Colomban Wendling
parent 93977f4ad1
commit a7570e84f0

View File

@ -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);
}