Module Name: src
Committed By: dholland
Date: Sun Jun 5 18:35:32 UTC 2016
Modified Files:
src/usr.bin/indent: lexi.c
Log Message:
Fix CSRG-era typo: typedef, not typdef. Spotted by Piotr Stefaniak.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.bin/indent/lexi.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/indent/lexi.c
diff -u src/usr.bin/indent/lexi.c:1.13 src/usr.bin/indent/lexi.c:1.14
--- src/usr.bin/indent/lexi.c:1.13 Sun Apr 12 11:09:49 2009
+++ src/usr.bin/indent/lexi.c Sun Jun 5 18:35:32 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: lexi.c,v 1.13 2009/04/12 11:09:49 lukem Exp $ */
+/* $NetBSD: lexi.c,v 1.14 2016/06/05 18:35:32 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -68,7 +68,7 @@
#if 0
static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: lexi.c,v 1.13 2009/04/12 11:09:49 lukem Exp $");
+__RCSID("$NetBSD: lexi.c,v 1.14 2016/06/05 18:35:32 dholland Exp $");
#endif
#endif /* not lint */
@@ -108,7 +108,7 @@ struct templ specials[1000] =
{"double", 4},
{"long", 4},
{"short", 4},
- {"typdef", 4},
+ {"typedef", 4},
{"unsigned", 4},
{"register", 4},
{"static", 4},