summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-01-17 13:22:04 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-01-17 13:22:04 +0000
commit51a19bc0654ae83130b5db1dfb665bcc81c7afd1 (patch)
treee55cce2925a2d19836570a7437871b388f571bf2 /op.c
parente04b929ac38a0730124ba1af2605a41e7457eede (diff)
downloadperl-51a19bc0654ae83130b5db1dfb665bcc81c7afd1.tar.gz
various tweaks for clean build and test on win32
p4raw-id: //depot/perl@2632
Diffstat (limited to 'op.c')
-rw-r--r--op.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/op.c b/op.c
index d50324aa7e..035247ba07 100644
--- a/op.c
+++ b/op.c
@@ -5050,7 +5050,7 @@ ck_sort(OP *o)
#endif
if (o->op_flags & OPf_STACKED)
- simplify_sort(o);
+ simplify_sort(o);
if (o->op_flags & OPf_STACKED) { /* may have been cleared */
OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */
OP *k;
@@ -5096,6 +5096,7 @@ ck_sort(OP *o)
STATIC void
simplify_sort(OP *o)
{
+ dTHR;
register OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */
OP *k;
int reversed;