summaryrefslogtreecommitdiff
path: root/embed.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-09-29 10:51:11 +0100
committerNicholas Clark <nick@ccl4.org>2010-09-29 10:51:11 +0100
commit24dd05fb6ec0d2312f243104dab6fe11bc0608d3 (patch)
tree2536dbe0896884e7b82345766d134d47fe412773 /embed.pl
parentb2ba7ad626a9a3573d6063c74360c80680a8d1c3 (diff)
downloadperl-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-xembed.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/embed.pl b/embed.pl
index ab584935a3..e1c7d61ee6 100755
--- a/embed.pl
+++ b/embed.pl
@@ -99,6 +99,7 @@ my (%has_va, %has_nocontext);
while (<IN>) {
chomp;
next if /^:/;
+ next if /^$/;
while (s|\\$||) {
$_ .= <IN>;
chomp;