]> granicus.if.org Git - graphviz/commitdiff
gvpr canontoken: remove commented out code
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 28 Jul 2022 02:17:37 +0000 (19:17 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 2 Aug 2022 04:33:31 +0000 (21:33 -0700)
lib/gvpr/actions.c

index d0f201a9dbdf314be222da413a1c5655b1f15c78..2f8d70d6c4e67044022641dd683f4d48a221743c 100644 (file)
@@ -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;