diff options
author | mveety <mveety@gmail.com> | 2013-07-10 21:16:15 -0400 |
---|---|---|
committer | mveety <mveety@gmail.com> | 2013-07-10 21:16:15 -0400 |
commit | 72cde47068ac541c5e054319c1b7c48efdc937db (patch) | |
tree | c37f6f9c2d42a15b4ad3539a66063ec95e38cf37 /sys/src/cmd/file.c | |
parent | fa4448b2d54943a71e7315b740d8ac3ca0b16564 (diff) |
fixed the bug that arisawa posted about on 9fans where file(1) would mistake 386 intermediates for HTML files.
Diffstat (limited to 'sys/src/cmd/file.c')
-rw-r--r-- | sys/src/cmd/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/file.c b/sys/src/cmd/file.c index ee6db10b4..fdf3a7c01 100644 --- a/sys/src/cmd/file.c +++ b/sys/src/cmd/file.c @@ -186,8 +186,8 @@ int (*call[])(void) = 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 */ |