diff options
author | Jan Dubois <jand@activestate.com> | 2005-09-26 14:19:51 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-27 08:36:24 +0000 |
commit | 92800dc89ab53a2801e84e2d1b7b7c9f1781d992 (patch) | |
tree | f5a9ccfab90b5e13a2531230617ac49385319b61 /XSUB.h | |
parent | e0f47ab05340542a20fdb51678ee2c4d326a9098 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |