Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/xlint/lint1 remove attribute keyword



details:   https://anonhg.NetBSD.org/src/rev/07e0bbd287ec
branches:  trunk
changeset: 328792:07e0bbd287ec
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Apr 18 02:41:32 2014 +0000

description:
remove attribute keyword

diffstat:

 usr.bin/xlint/lint1/scan.l |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 7afe4707b738 -r 07e0bbd287ec usr.bin/xlint/lint1/scan.l
--- a/usr.bin/xlint/lint1/scan.l        Fri Apr 18 02:41:17 2014 +0000
+++ b/usr.bin/xlint/lint1/scan.l        Fri Apr 18 02:41:32 2014 +0000
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: scan.l,v 1.56 2014/04/18 01:39:57 christos Exp $ */
+/* $NetBSD: scan.l,v 1.57 2014/04/18 02:41:32 christos Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -35,7 +35,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: scan.l,v 1.56 2014/04/18 01:39:57 christos Exp $");
+__RCSID("$NetBSD: scan.l,v 1.57 2014/04/18 02:41:32 christos Exp $");
 #endif
 
 #include <stdlib.h>
@@ -203,7 +203,6 @@
 } kwtab[] = {
        { "__alignof__", T_ALIGNOF,     0,      0,      0,        0, 0, 0, 0 },
        { "__attribute__",T_ATTRIBUTE,  0,      0,      0,        0, 0, 1, 0 },
-       { "attribute",  T_ATTRIBUTE,    0,      0,      0,        0, 0, 1, 0 },
        { "__packed__", T_AT_PACKED,    0,      0,      0,        0, 0, 1, 1 },
        { "packed",     T_AT_PACKED,    0,      0,      0,        0, 0, 1, 1 },
        { "__aligned__",T_AT_ALIGNED,   0,      0,      0,        0, 0, 1, 1 },



Home | Main Index | Thread Index | Old Index