Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/indent Fix CSRG-era typo: typedef, not typdef. Spott...



details:   https://anonhg.NetBSD.org/src/rev/9377e3b73637
branches:  trunk
changeset: 815872:9377e3b73637
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Jun 05 18:35:32 2016 +0000

description:
Fix CSRG-era typo: typedef, not typdef. Spotted by Piotr Stefaniak.

diffstat:

 usr.bin/indent/lexi.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 97cfbc9f7467 -r 9377e3b73637 usr.bin/indent/lexi.c
--- a/usr.bin/indent/lexi.c     Sun Jun 05 17:44:40 2016 +0000
+++ b/usr.bin/indent/lexi.c     Sun Jun 05 18:35:32 2016 +0000
@@ -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 @@
        {"double", 4},
        {"long", 4},
        {"short", 4},
-       {"typdef", 4},
+       {"typedef", 4},
        {"unsigned", 4},
        {"register", 4},
        {"static", 4},



Home | Main Index | Thread Index | Old Index