From a7570e84f02a1e4517677db033f399a66f49cfd4 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Fri, 24 Jun 2016 03:00:49 +0200 Subject: [PATCH] ctags: Avoid unnecessary and hard-to-read use of the comma operator Closes #1074. X-Universal-CTags-Commit-ID: 91c6773373864da345a7a9e0f5bd01a25588471c --- tagmanager/ctags/get.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tagmanager/ctags/get.c b/tagmanager/ctags/get.c index 9602943e..e6983308 100644 --- a/tagmanager/ctags/get.c +++ b/tagmanager/ctags/get.c @@ -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); }