summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2007-12-27 20:30:35 +0000
committerChristos Zoulas <christos@zoulas.com>2007-12-27 20:30:35 +0000
commit6503b00dd1dbfb3df7a31d07dd44d55bc0588eda (patch)
treefdda411ecfb3ea765c22e89a463a0e3c83c5257b
parent1eef18e785355c04a704c7667e4104769f520c9e (diff)
downloadfile-git-6503b00dd1dbfb3df7a31d07dd44d55bc0588eda.tar.gz
fix index error.FILE4_22
-rw-r--r--src/names.h27
1 files changed, 13 insertions, 14 deletions
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;