]> granicus.if.org Git - graphviz/commitdiff
tcldot-io.c: remove commented out code
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 6 Sep 2021 18:25:12 +0000 (11:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 9 Sep 2021 03:28:06 +0000 (20:28 -0700)
tclpkg/tcldot/tcldot-io.c

index 18ab588f0a59f0c9435b656c9a45160b25752b94..bf047be1f4ea0299c1752f30a6cd68d28525d144 100644 (file)
@@ -102,21 +102,3 @@ int myiodisc_memiofread(void *chan, char *buf, int bufsize)
     s->cur += l;
     return l;
 }
-
-#if 0
-Agraph_t *agread_usergets (ictx_t *ictx, FILE * fp, int (*usergets)(void *chan, char *buf, int bufsize))
-{
-    Agraph_t* g;
-    Agiodisc_t ioDisc;
-
-    ioDisc.afread = usergets;
-    ioDisc.putstr = AgIoDisc.putstr;
-    ioDisc.flush = AgIoDisc.flush;
-
-    ictx->mydisc.io = &ioDisc;
-    g = agread (fp, (Agdisc_t *)ictx);
-    ictx->mydisc.io = &AgIoDisc;   /* restore io */
-    return g;
-}
-
-#endif