63e877721218447e17583d33ae51f1d002b252a8
braney
  Sun Sep 6 16:33:17 2020 -0700
oops typo

diff --git src/inc/vGfx.h src/inc/vGfx.h
index a5afb00..8c55aa1 100644
--- src/inc/vGfx.h
+++ src/inc/vGfx.h
@@ -207,26 +207,26 @@
 	v->setHint(v->data,hint,value)
     /* Set hint */
 
 #define vgGetHint(v,hint) \
 	v->getHint(v->data,hint)
     /* Get hint */
 
 #define vgGetFontPixelHeight(v,font) \
 	v->getFontPixelHeight(v->data,font)
     /* How high in pixels is font? */
 
 #define vgGetFontStringWidth(v,font,string) \
 	v->getFontStringWidth(v->data,font,string)
     /* How wide is a string? */
 
-define vgSetFontMethod(v,method) \
+#define vgSetFontMethod(v,method) \
         v->setFontMethod(v->data,method)
 
 int vgFindRgb(struct vGfx *vg, struct rgbColor *rgb);
 /* Find color index corresponding to rgb color. */
 
 Color vgContrastingColor(struct vGfx *vg, int backgroundIx);
 /* Return black or white whichever would be more visible over
  * background. */
 
 #endif /* VGFX_H */