shithub: neatpost

Download patch

ref: 67e53d04a2ace065c1c00bd28f1123d8e11a5bd1
parent: 26105a71b358d6f32fab17fcab865dbacf0205ec
author: Ali Gholami Rudi <ali@rudi.ir>
date: Wed Apr 23 14:49:16 EDT 2014

font: font_glyphput() can be static

--- a/font.c
+++ b/font.c
@@ -25,7 +25,8 @@
 	return NULL;
 }
 
-struct glyph *font_glyphput(struct font *fn, char *id, char *name, int wid, int type)
+static struct glyph *font_glyphput(struct font *fn, char *id,
+				char *name, int wid, int type)
 {
 	int i = fn->nglyphs++;
 	struct glyph *g;