blob: 7da91c1669550ebd11738209d175286badc728f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$NetBSD: patch-ac,v 1.3 2002/11/27 15:04:05 agc Exp $
--- filters/makefilt.l 2002/11/27 14:53:02 1.1
+++ filters/makefilt.l 2002/11/27 14:54:49
@@ -167,6 +167,7 @@
<NORMAL>^({SPACE}*{NAME}{SPACE}*|\\\n)+: { write_delimited(yytext, yyleng, Keyword_attr); }
+<NORMAL>^{SPACE}*{NAME}{SPACE}*[?+:!]= { write_delimited(yytext, yyleng - 1, Ident2_attr); }
<NORMAL>^{SPACE}*{NAME}{SPACE}*= { write_delimited(yytext, yyleng, Ident2_attr); }
<NORMAL>{MACRO} { WriteToken(Ident2_attr); }
|