git: 9front

Download patch

ref: 4cb46de7d32f928c0ad0e30f3b0c92ae90962ddf
parent: f91b90bcf8005739fb162ae097b44b3b03ce1870
author: mveety <mveety@gmail.com>
date: Wed Jul 10 17:16:15 EDT 2013

fixed the bug that arisawa posted about on 9fans where file(1) would mistake 386 intermediates for HTML files.

--- a/sys/src/cmd/file.c
+++ b/sys/src/cmd/file.c
@@ -186,8 +186,8 @@
 	isrfc822,	/* email file */
 	ismbox,		/* mail box */
 	istar,		/* recognizable by tar checksum */
-	ishtml,		/* html keywords */
 	iscint,		/* compiler/assembler intermediate */
+	ishtml,		/* html keywords */
 	islimbo,	/* limbo source */
 	isc,		/* c & alef compiler key words */
 	isas,		/* assembler key words */
--