From: Matthew Fernandez Date: Thu, 28 Jul 2022 02:17:37 +0000 (-0700) Subject: gvpr canontoken: remove commented out code X-Git-Tag: 5.0.1~25^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08e7f6505d1170d4efd53837bbe6e2dcb4d66ca1;p=graphviz gvpr canontoken: remove commented out code --- diff --git a/lib/gvpr/actions.c b/lib/gvpr/actions.c index d0f201a9d..2f8d70d6c 100644 --- a/lib/gvpr/actions.c +++ b/lib/gvpr/actions.c @@ -937,8 +937,6 @@ static char *canontoken(char *str) } q = canon; while ((c = *p++)) { - /* if (isalnum(c) == FALSE) */ - /* continue; */ if (isupper(c)) c = tolower(c); *q++ = c;