]> granicus.if.org Git - graphviz/commitdiff
lefty: mark 'GFXtextcb' static
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 25 Sep 2021 00:50:27 +0000 (17:50 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 27 Sep 2021 14:45:27 +0000 (07:45 -0700)
This function is not used outside of its containing file.

cmd/lefty/gfxview.c
cmd/lefty/gfxview.h

index 2803b9a5da8a5d2a243fdd8650b90f40078442f8..ec93a2445781866e9f1978cdcb5bafa5d3217467 100644 (file)
@@ -439,7 +439,7 @@ void GFXredraw (void) {
     }
 }
 
-void GFXtextcb (int wi, char *s) {
+static void GFXtextcb (int wi, char *s) {
     Tobj wo, fo, co, to;
     long fm;
 
index 7d0c25518510449f5dd25c116f3d1521fe652828..70ba71de5f0d94be113aa1ed15cc4ceef5f695c2 100644 (file)
@@ -24,7 +24,6 @@ void GFXviewcb (Gevent_t *);
 void GFXevent (Gevent_t *);
 void GFXmove (void);
 void GFXredraw (void);
-void GFXtextcb (int, char *);
 void GFXbuttoncb (int, void *);
 void GFXmonitorfile (int);
 void GFXidle (void);