shithub: neatpost

Download patch

ref: 0d5c130f06187d85e1eb6387c79bfd89888fb738
parent: de80aedf8cbfa1f9663ebc0f24adee76bafef853
author: Ali Gholami Rudi <ali@rudi.ir>
date: Sun May 20 18:34:17 EDT 2018

pdf: treat OTF files as TTF for now

--- a/pdf.c
+++ b/pdf.c
@@ -122,7 +122,7 @@
 	if (ext && !strcmp(".ttf", ext))
 		return 't';
 	if (ext && !strcmp(".otf", ext))
-		return 'o';
+		return 't';
 	return '1';
 }