]> granicus.if.org Git - graphviz/commitdiff
canontoken: remove commented out code
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 29 Aug 2021 21:55:51 +0000 (14:55 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 02:26:35 +0000 (19:26 -0700)
lib/common/colxlate.c

index 5196630ca62daba5effb7e76e12f0141261eed00..fd8ecfa6fe0772bb02846291e78a6b6f326cf812 100644 (file)
@@ -144,8 +144,6 @@ char *canontoken(char *str)
     }
     q = canon;
     while ((c = *p++)) {
-       /* if (isalnum(c) == FALSE) */
-           /* continue; */
        if (isupper(c))
            c = (unsigned char) tolower(c);
        *q++ = c;