From: Christos Zoulas Date: Thu, 27 Dec 2007 20:30:35 +0000 (+0000) Subject: fix index error. X-Git-Tag: FILE4_22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6503b00dd1dbfb3df7a31d07dd44d55bc0588eda;p=file fix index error. --- diff --git a/src/names.h b/src/names.h index 3ee1a861..2027ebd9 100644 --- a/src/names.h +++ b/src/names.h @@ -32,7 +32,7 @@ * appear at fixed offsets into the file. Don't make HOWMANY * too high unless you have a very fast CPU. * - * $File: names.h,v 1.27 2007/05/08 16:47:03 christos Exp $ + * $File: names.h,v 1.28 2007/10/29 00:54:08 christos Exp $ */ /* @@ -43,19 +43,18 @@ /* these types are used to index the table 'types': keep em in sync! */ #define L_C 0 /* first and foremost on UNIX */ #define L_CC 1 /* Bjarne's postincrement */ -#define L_FORT 2 /* the oldest one */ -#define L_MAKE 3 /* Makefiles */ -#define L_PLI 4 /* PL/1 */ -#define L_MACH 5 /* some kinda assembler */ -#define L_ENG 6 /* English */ -#define L_PAS 7 /* Pascal */ -#define L_MAIL 8 /* Electronic mail */ -#define L_NEWS 9 /* Usenet Netnews */ -#define L_JAVA 10 /* Java code */ -#define L_HTML 11 /* HTML */ -#define L_BCPL 12 /* BCPL */ -#define L_M4 13 /* M4 */ -#define L_PO 14 /* PO */ +#define L_MAKE 2 /* Makefiles */ +#define L_PLI 3 /* PL/1 */ +#define L_MACH 4 /* some kinda assembler */ +#define L_ENG 5 /* English */ +#define L_PAS 6 /* Pascal */ +#define L_MAIL 7 /* Electronic mail */ +#define L_NEWS 8 /* Usenet Netnews */ +#define L_JAVA 9 /* Java code */ +#define L_HTML 10 /* HTML */ +#define L_BCPL 11 /* BCPL */ +#define L_M4 12 /* M4 */ +#define L_PO 13 /* PO */ static const struct { const char *human;