git: 9front

Download patch

ref: ef596514f90ad4e2f481514f64797f76cd8f5ed3
parent: 58aab38c3b28721181dd2b181bc5999ae30df1f2
author: Jacob Moody <moody@posixcafe.org>
date: Sun Jun 8 20:29:40 EDT 2025

troff: fix parsing of font files in nroff (thanks Dave Woodman)

--- a/sys/src/cmd/troff/n10.c
+++ b/sys/src/cmd/troff/n10.c
@@ -90,7 +90,6 @@
 		chtemp[i].num = chtemp[i].code = i;
 		chtemp[i].wid = 1;	/* default ascii widths */
 	}
-	skipline(fp);
 	nw = ALPHABET;
 	while (fgets(buf, sizeof buf, fp) != NULL) {
 		int ntok;
--