summaryrefslogtreecommitdiff
path: root/XSUB.h
diff options
context:
space:
mode:
authorJan Dubois <jand@activestate.com>2005-09-26 14:19:51 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-09-27 08:36:24 +0000
commit92800dc89ab53a2801e84e2d1b7b7c9f1781d992 (patch)
treef5a9ccfab90b5e13a2531230617ac49385319b61 /XSUB.h
parente0f47ab05340542a20fdb51678ee2c4d326a9098 (diff)
downloadperl-92800dc89ab53a2801e84e2d1b7b7c9f1781d992.tar.gz
mark cannot be const because MEXTEND() modifies it, and tkGlue.c uses MEXTEND()
From: "Jan Dubois" <jand@ActiveState.com> Message-Id: <200509270419.j8R4JtVw026876@smtp3.ActiveState.com> p4raw-id: //depot/perl@25613
Diffstat (limited to 'XSUB.h')
-rw-r--r--XSUB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/XSUB.h b/XSUB.h
index 7f0954c7e1..65c41bd738 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -115,7 +115,7 @@ is a lexical $_ in scope.
#define dAXMARK \
I32 ax = POPMARK; \
- register SV ** const mark = PL_stack_base + ax++
+ register SV **mark = PL_stack_base + ax++
#define dITEMS I32 items = SP - MARK