summaryrefslogtreecommitdiff
path: root/util.c
Commit message (Expand)AuthorAgeFilesLines
* Revise check for negative versions plus testJohn Peacock2011-07-011-3/+5
* For shorter strings, store C<study>'s data as U8s or U16s, instead of U32s.Nicholas Clark2011-07-011-16/+69
* Store C<study>'s data as U32s, instead of I32s.Nicholas Clark2011-07-011-10/+11
* Tidy code in pp_study and Perl_screaminstr()Nicholas Clark2011-07-011-7/+7
* Store C<study>'s data in in mg_ptr instead of interpreter variables.Nicholas Clark2011-07-011-2/+10
* Merge PL_scream{first,next} into one allocated buffer.Nicholas Clark2011-07-011-3/+4
* Change PL_screamnext to store absolute positions.Nicholas Clark2011-07-011-16/+18
* Report a better error when trying to use negative version numbers instead of ...Claes Jakobsson2011-06-301-0/+3
* Move PL_{No,Yes,hexdigit} from perlvars.h to perl.h, as all are const char[]Nicholas Clark2011-06-121-3/+0
* Refactor Perl_get_vtbl() to a small array lookup from a large switch statement.Nicholas Clark2011-06-111-95/+2
* Abolish PL_vtbl_sig. It's been all 0s since it was added in 5.0 alpha 2.Nicholas Clark2011-06-111-3/+0
* Don't even declare PL_vtbl_sigelem under -DPERL_MICRONicholas Clark2011-06-111-0/+2
* Store FBMs in PVMGs, instead of GVs.Nicholas Clark2011-06-111-2/+2
* Store the BM table in mg_ptr instead of after SvCUR().Nicholas Clark2011-06-111-11/+28
* Exit early from Perl_fbm_compile() if the SV is already "compiled".Nicholas Clark2011-06-111-0/+3
* In Perl_fbm_instr(), use a switch() statement for the special case code.Nicholas Clark2011-06-111-8/+10
* In Perl_fbm_compile(), use STRLEN instead of U32 to calculate BmPREVIOUS().Nicholas Clark2011-06-111-4/+4
* Use SvTAIL() instead of BmFLAGS(). The core no longer uses BmFLAGS().Nicholas Clark2011-06-111-1/+1
* Emulate the value of BmFLAGS() using SvTAIL().Nicholas Clark2011-06-111-1/+0
* Don't fbm_compile() studied scalars, to give more flexibility in SV flag usage.Nicholas Clark2011-06-111-0/+7
* unused variable tmpgvRobin Barker2011-06-101-1/+0
* Turn $$ into a magical readonly variable that always fetches getpid() instead...Max Maischein2011-05-221-6/+0
* In Perl_safesyscalloc(), only declare total_size if conditional code needs it.Nicholas Clark2011-05-181-1/+6
* Fix building with -UuseperlioNicholas Clark2011-03-071-0/+4
* Windows builds require perliol.h conditional on USE_PERLIO.George Greer2011-02-161-0/+2
* [perl #78494] Pipes cause threads to hang on join()Father Chrysostomos2011-02-151-4/+15
* Silence util.c compiler warning from win32 smokesKarl Williamson2011-02-131-1/+1
* Move grok_bslash_c to dquote.c and make staticKarl Williamson2011-02-091-41/+0
* Move grok_blsash_o and make staticKarl Williamson2011-02-091-79/+0
* util.c handling of return value of vsnprintfRobin Barker2011-01-161-4/+16
* In Perl_write_to_stderr(), use Perl_magic_methcall() if STDERR is tied.Nicholas Clark2011-01-131-22/+2
* Fix typos (spelling errors) in Perl sources.Peter J. Acklam) (via RT2011-01-071-2/+2
* Calling "PRINT" on a tied STDERR can use G_DISCARD, as the result is ignored.Nicholas Clark2011-01-051-1/+1
* Argument op to report_evil_fh() is always PL_op->op_type, so need not be passedNicholas Clark2010-12-281-2/+2
* The io argument to report_evil_fh() is always GvIO(gv), so need not be passed.Nicholas Clark2010-12-281-4/+5
* Extract the OP_phoney_* code from report_evil_fh() into report_wrongway_fh()Nicholas Clark2010-12-281-59/+60
* Add Perl_foldEQ_latin1()Karl Williamson2010-11-281-0/+21
* Bring core Perl in line with CPAN 0.86 releaseJohn Peacock2010-11-271-21/+32
* Document the refcount of version functions’ retvalFather Chrysostomos2010-11-231-1/+7
* Eliminate PL_dirtyFlorian Ragwitz2010-11-141-2/+2
* adjust output of -DmDavid Mitchell2010-10-311-1/+1
* Refactor Perl_xs_apiversion_bootcheck()Nicholas Clark2010-10-081-7/+12
* Convert the implementation of XS_APIVERSION_BOOTCHECK to a function.Nicholas Clark2010-10-081-0/+25
* Refactor xs_version_bootcheck() to remove complex constructions.Nicholas Clark2010-10-081-13/+22
* xs_version_bootcheck() must use mortals, as {new,upg}_version() can croak.Nicholas Clark2010-10-081-7/+3
* Change vverify() to return HV or NULL (RT#78286)David Golden2010-10-081-28/+23
* Convert the implementation of XS_VERSION_BOOTCHECK to a function from a macro.Nicholas Clark2010-10-071-0/+43
* [perl #48332] Debugger corrupts symbol table mungingFather Chrysostomos2010-09-301-2/+6
* systematically provide pv/pvn/pvs/sv quartetsZefram2010-09-281-0/+19
* #!perl -C -w diesFather Chrysostomos2010-09-261-2/+10