diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 13:22:04 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 13:22:04 +0000 |
commit | 51a19bc0654ae83130b5db1dfb665bcc81c7afd1 (patch) | |
tree | e55cce2925a2d19836570a7437871b388f571bf2 /op.c | |
parent | e04b929ac38a0730124ba1af2605a41e7457eede (diff) | |
download | perl-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |