Commit a92a1c27 by Yury Gribov Committed by Yury Gribov

mklog: Ignore preprocessor directives.

2015-05-12  Yury Gribov  <y.gribov@samsung.com>

	* mklog: Ignore preprocessor directives.

From-SVN: r223081
parent d5d3b217
2015-05-12 Yury Gribov <y.gribov@samsung.com>
* mklog: Ignore preprocessor directives.
2015-04-22 Jakub Jelinek <jakub@redhat.com>
* gennews (files): Add files for GCC 5.
......
......@@ -131,7 +131,6 @@ sub is_unified_hunk_start {
}
# Check if line is a top-level declaration.
# TODO: ignore preprocessor directives except maybe #define ?
sub is_top_level {
my ($function, $is_context_diff) = (@_);
if (is_unified_hunk_start ($function)
......@@ -143,7 +142,7 @@ sub is_top_level {
} else {
$function =~ s/^.//;
}
return $function && $function !~ /^[\s{]/;
return $function && $function !~ /^[\s{#]/;
}
# Read contents of .diff file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment