X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pad.h;h=33717d32d79fe983f79cbfcbdfc95dc155572039;hb=b3c649451aa23903a1f1aa5b0d54e8244611b239;hp=81a1312626f7720b4556f31dbdfa1e2d974c95d4;hpb=f8503592a22431f4f2362d87270e54bfdb2d3177;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pad.h b/pad.h index 81a1312..33717d3 100644 --- a/pad.h +++ b/pad.h @@ -1,6 +1,6 @@ /* pad.h * - * Copyright (C) 2002, 2003, 2005, by Larry Wall and others + * Copyright (C) 2002, 2003, 2005, 2006, 2007 by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -295,7 +295,7 @@ ling pad (lvalue) to C. Note that C is hijacked for this purpose #define PAD_COMPNAME_TYPE(po) pad_compname_type(po) #define PAD_COMPNAME_OURSTASH(po) \ - (OURSTASH(PAD_COMPNAME_SV(po))) + (SvOURSTASH(PAD_COMPNAME_SV(po))) #define PAD_COMPNAME_GEN(po) ((STRLEN)SvUVX(AvARRAY(PL_comppad_name)[po])) @@ -306,8 +306,7 @@ ling pad (lvalue) to C. Note that C is hijacked for this purpose =for apidoc m|void|PAD_DUP|PADLIST dstpad|PADLIST srcpad|CLONE_PARAMS* param Clone a padlist. -=for apidoc m|void|PAD_CLONE_VARS|PerlInterpreter *proto_perl \ -|CLONE_PARAMS* param +=for apidoc m|void|PAD_CLONE_VARS|PerlInterpreter *proto_perl|CLONE_PARAMS* param Clone the state variables associated with running and compiling pads. =cut @@ -345,3 +344,13 @@ Clone the state variables associated with running and compiling pads. PL_padix_floor = proto_perl->Ipadix_floor; \ PL_pad_reset_pending = proto_perl->Ipad_reset_pending; \ PL_cop_seqmax = proto_perl->Icop_seqmax; + +/* + * Local variables: + * c-indentation-style: bsd + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + * + * ex: set ts=8 sts=4 sw=4 noet: + */