X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=av.c;h=adc65496a16a1ad868fbafd85c3d731c725e7b06;hb=c13fdd862cdcd2a9001523a3b81e435228302b74;hp=264fe23b10da3adbe4e8c3d413919e2a8a8bfab2;hpb=954c1994944eafa74aaac1bab94e820b6e447da9;p=p5sagit%2Fp5-mst-13.2.git diff --git a/av.c b/av.c index 264fe23..adc6549 100644 --- a/av.c +++ b/av.c @@ -1,6 +1,6 @@ /* av.c * - * Copyright (c) 1991-1999, Larry Wall + * Copyright (c) 1991-2000, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -104,7 +104,7 @@ Perl_av_extend(pTHX_ AV *av, I32 key) IV itmp; #endif -#if defined(MYMALLOC) && !defined(PURIFY) && !defined(LEAKTEST) +#if defined(MYMALLOC) && !defined(LEAKTEST) newmax = malloced_size((void*)AvALLOC(av))/sizeof(SV*) - 1; if (key <= newmax) @@ -167,8 +167,8 @@ Returns the SV at the specified index in the array. The C is the index. If C is set then the fetch will be part of a store. Check that the return value is non-null before dereferencing it to a C. -See L for more information -on how to use this function on tied arrays. +See L for +more information on how to use this function on tied arrays. =cut */ @@ -231,7 +231,7 @@ that the caller is responsible for suitably incrementing the reference count of C before the call, and decrementing it if the function returned NULL. -See L for +See L for more information on how to use this function on tied arrays. =cut