From: Matt S Trout Date: Fri, 9 Nov 2007 07:21:56 +0000 (+0000) Subject: correct typo in ifndef X-Git-Tag: 0.005000~119 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=commitdiff_plain;h=552a9b31980a59c456fef6e3e895714ffe901bd5 correct typo in ifndef --- diff --git a/Changes b/Changes index 65afc6b..0a9d7f2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Devel-Declare +0.001004 + - correct idiotic typo if ifndef + 0.001003 - internalise definitions for toke.c chunks to save hassle - make NEWSV macro defined via ifndef rather than version check in case diff --git a/stolen_chunk_of_toke.c b/stolen_chunk_of_toke.c index 5a39ef8..54f67e9 100644 --- a/stolen_chunk_of_toke.c +++ b/stolen_chunk_of_toke.c @@ -142,7 +142,7 @@ STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow #endif /* we also need this because we define PERL_CORE so handy.h doesn't provide it for us (mst) */ -#ifndef +#ifndef NEWSV #define NEWSV(x,len) newSV(len) #endif