svn commit: r301743 - stable/10/usr.bin/indent

Pedro F. Giffuni pfg at FreeBSD.org
Thu Jun 9 16:29:20 UTC 2016


Author: pfg
Date: Thu Jun  9 16:29:19 2016
New Revision: 301743
URL: https://svnweb.freebsd.org/changeset/base/301743

Log:
  MFC r301513:
  indent(1): Fix old typo.
  
  It's typedef, not typdef.
  
  Obtained from:	NetBSD (CVS rev. 1.14)

Modified:
  stable/10/usr.bin/indent/lexi.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/indent/lexi.c
==============================================================================
--- stable/10/usr.bin/indent/lexi.c	Thu Jun  9 16:15:01 2016	(r301742)
+++ stable/10/usr.bin/indent/lexi.c	Thu Jun  9 16:29:19 2016	(r301743)
@@ -79,7 +79,7 @@ struct templ specials[1000] =
     {"double", 4},
     {"long", 4},
     {"short", 4},
-    {"typdef", 4},
+    {"typedef", 4},
     {"unsigned", 4},
     {"register", 4},
     {"static", 4},


More information about the svn-src-stable-10 mailing list