summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorRobin Houston <robin@cpan.org>2005-12-19 18:46:00 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-12-19 18:17:19 +0000
commit7b9ef14019d3c4d1aa14641dbd421c81c2cd18a4 (patch)
tree5069228d909a52c1423c3eb7067f78b74869b0ef /op.h
parent25ae1130f781118f78fbcd7bd13d6c8f4f21734a (diff)
downloadperl-7b9ef14019d3c4d1aa14641dbd421c81c2cd18a4.tar.gz
Re: [PATCH] Make the 'sort' pragma lexically scoped
Message-ID: <20051219174620.GA17940@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26402
Diffstat (limited to 'op.h')
-rw-r--r--op.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/op.h b/op.h
index e687f42d22..d973a6ffee 100644
--- a/op.h
+++ b/op.h
@@ -215,6 +215,9 @@ Deprecated. Use C<GIMME_V> instead.
#define OPpSORT_REVERSE 4 /* Reversed sort */
#define OPpSORT_INPLACE 8 /* sort in-place; eg @a = sort @a */
#define OPpSORT_DESCEND 16 /* Descending sort */
+#define OPpSORT_QSORT 32 /* Use quicksort (not mergesort) */
+#define OPpSORT_STABLE 64 /* Use a stable algorithm */
+
/* Private for OP_THREADSV */
#define OPpDONE_SVREF 64 /* Been through newSVREF once */