From 1f1a900dd7d2a95a248805cfbbdeed47c666c4b4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 11 Sep 2009 14:54:30 +0200 Subject: tevent:mksyms: allow characters after closing functions parenthesis. Michael --- lib/tevent/script/mksyms.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/tevent') diff --git a/lib/tevent/script/mksyms.awk b/lib/tevent/script/mksyms.awk index 0d80d9f70b..ca14da0f21 100644 --- a/lib/tevent/script/mksyms.awk +++ b/lib/tevent/script/mksyms.awk @@ -28,7 +28,7 @@ END { current_file=FILENAME } if (inheader) { - if (match($0,"[)][ \t]*[;][ \t]*$")) { + if (match($0,"[)][^()]*[;][ \t]*$")) { inheader = 0; } next; @@ -57,7 +57,7 @@ END { } } -/[_A-Za-z0-9]+[ \t]*[(].*[)][ \t]*;[ \t]*$/ { +/[_A-Za-z0-9]+[ \t]*[(].*[)][^()]*;[ \t]*$/ { sub(/[(].*$/, ""); gsub(/[^ \t]+[ \t]+/, ""); gsub(/^[*]+/, ""); -- cgit