X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=stolen_chunk_of_toke.c;h=f0498cbf8e0b06e37d22f6da066c0fb131c84d1d;hb=hooks_endofscope;hp=0daee6336cd964a2dfab36abd6e83ee81b315ba1;hpb=14ab3472d828e17e875019680713603aa13412e6;p=p5sagit%2FDevel-Declare.git diff --git a/stolen_chunk_of_toke.c b/stolen_chunk_of_toke.c index 0daee63..f0498cb 100644 --- a/stolen_chunk_of_toke.c +++ b/stolen_chunk_of_toke.c @@ -19,6 +19,18 @@ /* the following #defines are stolen from assorted headers, not toke.c (mst) */ +#define skipspace(a) S_skipspace(aTHX_ a) +#define incline(a) S_incline(aTHX_ a) +#define filter_gets(a,b,c) S_filter_gets(aTHX_ a,b,c) +#define scan_str(a,b,c) S_scan_str(aTHX_ a,b,c) +#define scan_word(a,b,c,d,e) S_scan_word(aTHX_ a,b,c,d,e) + +STATIC void S_incline(pTHX_ char *s); +STATIC char* S_skipspace(pTHX_ char *s); +STATIC char * S_filter_gets(pTHX_ SV *sv, PerlIO *fp, STRLEN append); +STATIC char* S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims); +STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp); + #define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */ #define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */ #define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */ @@ -127,9 +139,6 @@ # define PL_nexttype (PL_parser->nexttype) # define PL_nextval (PL_parser->nextval) /* end of backcompat macros form 5.9 toke.c (mst) */ -/* we also need this because we define PERL_CORE so handy.h doesn't provide - it for us (mst) */ -#define NEWSV(x,len) newSV(len) #endif /* when ccflags include -DDEBUGGING we need this for earlier 5.8 perls */ @@ -297,16 +306,20 @@ S_skipspace(pTHX_ register char *s) PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr); PL_last_lop = PL_last_uni = Nullch; - /* Close the filehandle. Could be from -P preprocessor, + /* In perl versions previous to p4-rawid: //depot/perl@32954 -P + * preprocessors were supported here. We don't support -P at all, even + * on perls that support it, and use the following chunk from blead + * perl. (rafl) + */ + + /* Close the filehandle. Could be from * STDIN, or a regular file. If we were reading code from * STDIN (because the commandline held no -e or filename) * then we don't close it, we reset it so the code can * read from STDIN too. */ - if (PL_preprocess && !PL_in_eval) - (void)PerlProc_pclose(PL_rsfp); - else if ((PerlIO*)PL_rsfp == PerlIO_stdin()) + if ((PerlIO*)PL_rsfp == PerlIO_stdin()) PerlIO_clearerr(PL_rsfp); else (void)PerlIO_close(PL_rsfp); @@ -395,20 +408,12 @@ S_scan_word(pTHX_ register char *s, char *dest, STRLEN destlen, int allow_packag * If so, it sets the current line number and file to the values in the comment. */ -/* 5.9+ make the char *s in S_incline const and declare it in proto.h so we - need to do the same to avoid a prototype mismatch (mst) */ -#ifdef PERL_5_9_PLUS -#define S_INCLINE_CONST const -#else -#define S_INCLINE_CONST -#endif - STATIC void -S_incline(pTHX_ S_INCLINE_CONST char *s) +S_incline(pTHX_ char *s) { char *t; - S_INCLINE_CONST char *n; - S_INCLINE_CONST char *e; + char *n; + char *e; char ch; CopLINE_inc(PL_curcop); @@ -436,8 +441,7 @@ S_incline(pTHX_ S_INCLINE_CONST char *s) e = t + 1; } else { - /* explicitly cast to char * in case S_INCLINE_CONST in force (mst) */ - for (t = (char *)s; !isSPACE(*t); t++) ; + for (t = s; !isSPACE(*t); t++) ; e = t; } while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')