diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-09-29 10:51:11 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-09-29 10:51:11 +0100 |
commit | 24dd05fb6ec0d2312f243104dab6fe11bc0608d3 (patch) | |
tree | 2536dbe0896884e7b82345766d134d47fe412773 /embed.pl | |
parent | b2ba7ad626a9a3573d6063c74360c80680a8d1c3 (diff) | |
download | perl-24dd05fb6ec0d2312f243104dab6fe11bc0608d3.tar.gz |
Skip the blank lines when processing embed.fnc
This has the side effect of simplifying the generated embed.h and proto.h
Diffstat (limited to 'embed.pl')
-rwxr-xr-x | embed.pl | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -99,6 +99,7 @@ my (%has_va, %has_nocontext); while (<IN>) { chomp; next if /^:/; + next if /^$/; while (s|\\$||) { $_ .= <IN>; chomp; |