summaryrefslogtreecommitdiff
path: root/embed.pl
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1998-07-18 14:30:54 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1998-07-18 14:30:54 +0000
commit8f8722428a3062985b7d543348f72ccabf60a063 (patch)
treefb3182ddd757130b628be8e0b18fdbe61b2aa7a8 /embed.pl
parent3280af22f58e7b37514ed104858e2c2fc55ceeeb (diff)
downloadperl-8f8722428a3062985b7d543348f72ccabf60a063.tar.gz
Builds and passes tests with -DMULTIPLICITY and -DCRIPPLED_CC
(still with PERL_GLOBAL_STRUCT) - to cover more #if branches p4raw-id: //depot/ansiperl@1533
Diffstat (limited to 'embed.pl')
-rwxr-xr-xembed.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/embed.pl b/embed.pl
index 836e816166..ca489c5b2f 100755
--- a/embed.pl
+++ b/embed.pl
@@ -98,7 +98,8 @@ sub multon ($$$) {
}
sub multoff ($$) {
my ($sym,$pre) = @_;
- hide("$pre$sym", "PL_$sym");
+# hide("$pre$sym", "PL_$sym");
+ return '';
}
unlink 'embed.h';
@@ -171,7 +172,7 @@ print EM <<'END';
END
for $sym (sort keys %thread) {
- print EM multon($sym,'T','curinterp->');
+ print EM multon($sym,'T','PL_curinterp->');
}
print EM <<'END';
@@ -183,7 +184,7 @@ print EM <<'END';
END
for $sym (sort keys %intrp) {
- print EM multon($sym,'I','curinterp->');
+ print EM multon($sym,'I','PL_curinterp->');
}
print EM <<'END';