summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Sigh - really bump Text::Wrap version number this time.Dave Mitchell2005-04-211-1/+1
| | | p4raw-id: //depot/perl@24275
* bump version number in Text::Wrap after change #24273Dave Mitchell2005-04-210-0/+0
| | | | | p4raw-link: @24273 on //depot/perl: 818675a5006285acc41be05f4d63d56374ea5eca p4raw-id: //depot/perl@24274
* [perl #34902] Text::Wrap::wrap() fails with non-space separatorDave Mitchell2005-04-212-7/+23
| | | p4raw-id: //depot/perl@24273
* Symbian port of PerlJarkko Hietaniemi2005-04-21119-750/+7688
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271
* [perl #34976] substr uses utf8 length cache incorrectlyDave Mitchell2005-04-212-2/+9
| | | p4raw-id: //depot/perl@24270
* extra code in pp_concat, Take 2Andy Lester2005-04-212-20/+26
| | | | | | | Message-Id: <20050414020601.GA21346@petdance.com> add 'const', and remove extraneous code, from pp_concat p4raw-id: //depot/perl@24269
* patch to [PATCH] Fix MGVTBL structures in perl.h (preprocessorDavid Dyck2005-04-201-4/+8
| | | | | | | | | | Message-Id: <Pine.LNX.4.62.0504201627550.27786@dd.tc.fluke.com> fix nits in change #24264: some preprocessors don't like #ifdefs within a macro's args; also removed duplicate semicolons from macro definitions. p4raw-link: @24264 on //depot/perl: 4944113acaf494b4518ba93648e0a4276c34a175 p4raw-id: //depot/perl@24268
* In change 24266 I failed to actually change anything. Sigh.Dave Mitchell2005-04-201-1/+1
| | | p4raw-id: //depot/perl@24267
* change misleading syslog() exampleDave Mitchell2005-04-200-0/+0
| | | p4raw-id: //depot/perl@24266
* [perl #35059] [PATCH] caller() skips frames (such as eval() frames) if $^P set glasser@tang-eleven-seventy-nine.mit.edu2005-04-203-5/+35
| | | | | | | | | From: glasser@tang-eleven-seventy-nine.mit.edu (via RT) <perlbug-followup@perl.org> Message-Id: <rt-3.0.11-35059-111134.0.304511316819145@perl.org> improved version of change 21842 that copes with glob DB::sub existing but &DB::sub not existing. p4raw-id: //depot/perl@24265
* Fix MGVTBL structures in perl.hAndy Lester2005-04-201-131/+346
| | | | | | | | | | Message-Id: <20050420200923.GA3017@petdance.com> The MGVTBL structures contain 7 function pointers, but only 5 were getting initialized. Plus, there were repeated lists between declaration and definition; add a macro to declare or define all the global MGVTBLs as appropriate. p4raw-id: //depot/perl@24264
* Refactoring to Sv*_set() macros - patch #6Steve Peters2005-04-204-13/+21
| | | | | | Message-ID: <20050420112720.GA31042@mccoy.peters.homeunix.org> Date: Wed, 20 Apr 2005 06:27:20 -0500 p4raw-id: //depot/perl@24260
* Merge common code. Reduces object size by 1K on x86, 6K on PPCNicholas Clark2005-04-201-122/+77
| | | p4raw-id: //depot/perl@24258
* run regen_headers after addition of FOO_set() macrosDave Mitchell2005-04-191-7/+7
| | | p4raw-id: //depot/perl@24257
* pad_compname_type(), takes care of a clunky macroAndy Lester2005-04-195-4/+20
| | | | | Message-Id: <20050419163844.GA19747@petdance.com> p4raw-id: //depot/perl@24256
* DEBUG_LEAKING_SCALARS could use the value of a freed PL_opDave Mitchell2005-04-191-0/+4
| | | p4raw-id: //depot/perl@24255
* Don't set things to zero twice. Once is enough. (see also change 15255)Nicholas Clark2005-04-191-42/+15
| | | p4raw-id: //depot/perl@24254
* Restore SvEND_setNicholas Clark2005-04-191-0/+3
| | | p4raw-id: //depot/perl@24253
* Force RVALUE macros when in PERL_DEBUG_COWNicholas Clark2005-04-192-21/+32
| | | p4raw-id: //depot/perl@24252
* Avoid generating thousands of UTF-8 warnings when testing under aNicholas Clark2005-04-191-8/+8
| | | | | UTF-8 locale p4raw-id: //depot/perl@24251
* Simplify PERL_DEBUG_PAD_ZERO so it continues to expand toRafael Garcia-Suarez2005-04-191-1/+3
| | | | | valid C code p4raw-id: //depot/perl@24249
* Refactoring to Sv*_set() macros - patch #5Steve Peters2005-04-1936-217/+239
| | | | | | Message-ID: <20050419000925.GA21640@mccoy.peters.homeunix.org> Date: Mon, 18 Apr 2005 19:09:25 -0500 p4raw-id: //depot/perl@24248
* Add CLONE_SKIP() class method to allow individual classes to skipDave Mitchell2005-04-195-6/+178
| | | | | cloning objects during thread creation p4raw-id: //depot/perl@24247
* PERL_DEBUG_COW for SvUVX and SvPVXNicholas Clark2005-04-182-5/+5
| | | p4raw-id: //depot/perl@24246
* SvPV_renew also calls SvLEN_setNicholas Clark2005-04-184-12/+24
| | | | | | Add SvPV_shrink_to_cur(sv) to call SvPV_renew with SvCUR(sv)+1. For Ponie this can be a single call into the PMC p4raw-id: //depot/perl@24245
* Replace Renew(SvPVX(...)...) with SvPV_renew, which avoids an LVALUENicholas Clark2005-04-184-6/+10
| | | | | SvPVX p4raw-id: //depot/perl@24244
* A more efficient way of expressing the MALLOC_WRAP conditional compile.Nicholas Clark2005-04-181-40/+19
| | | p4raw-id: //depot/perl@24243
* Fix bug #33664: allow for transport providers with protocol == 0Steve Hay2005-04-181-1/+2
| | | | | | (This indicates that any protocol may be used, so don't bother checking that the requested protocol matches in this case.) p4raw-id: //depot/perl@24242
* Refactor the odd-one-out code before a Renew(SvPVX(...)...)Nicholas Clark2005-04-181-4/+3
| | | p4raw-id: //depot/perl@24241
* Two more uses of lvalue SvIVX()Nicholas Clark2005-04-182-2/+2
| | | p4raw-id: //depot/perl@24240
* Refactoring to Sv*_set() macros - patch #4Steve Peters2005-04-1814-62/+66
| | | | | | | Message-ID: <20050416160502.GA26957@mccoy.peters.homeunix.org> plus fix to Perl_rvpv_dup assigning to an RV with SvPVX p4raw-id: //depot/perl@24239
* Update the outdated info in "Minimizing the Perl installation"Rafael Garcia-Suarez2005-04-151-99/+93
| | | p4raw-id: //depot/perl@24238
* Fix for:bstrand@switchmanagement.com2005-04-141-0/+2
| | | | | | | | | [perl #34934] perl 5.8.5 on x86 and x86-64 hang at compile-time From: bstrand@switchmanagement.com (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-34934-110595.15.9181274318682@perl.org> This syntax error now produces a panic message. p4raw-id: //depot/perl@24237
* Removing yydestruct from perly.cAndy Lester2005-04-131-36/+6
| | | | | Message-ID: <20050413150647.GA13464@petdance.com> p4raw-id: //depot/perl@24236
* Mandrakesoft is now MandrivaH.Merijn Brand2005-04-131-2/+2
| | | p4raw-id: //depot/perl@24235
* H.Merijn changed e-mailH.Merijn Brand2005-04-137-7/+7
| | | p4raw-id: //depot/perl@24234
* -Wformat Robin Barker2005-04-134-81/+82
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C634@hotel.npl.co.uk> p4raw-id: //depot/perl@24233
* Upgrade to ExtUtils::MakeMaker 6.28Rafael Garcia-Suarez2005-04-137-14/+27
| | | p4raw-id: //depot/perl@24232
* Upgrade to Encode 2.0902Rafael Garcia-Suarez2005-04-1211-73/+301
| | | p4raw-id: //depot/perl@24231
* Don't PERL_HASH(SvUVX(...)...) as it's actually a set.Nicholas Clark2005-04-121-3/+25
| | | | | Plus add an editor block p4raw-id: //depot/perl@24230
* Refactoring to Sv*_set() macros - patch #3Steve Peters2005-04-123-20/+23
| | | | | | | Message-ID: <20050411023736.GB9355@mccoy.peters.homeunix.org> (with correction to SvUV_set) p4raw-id: //depot/perl@24229
* Avoid taking a reference to SvIVX and putting that address on theNicholas Clark2005-04-113-7/+8
| | | | | save stack p4raw-id: //depot/perl@24228
* Support d_libm_lib_version for Win32 (see change 24217)Steve Hay2005-04-118-0/+28
| | | p4raw-id: //depot/perl@24227
* Out of sync metaunit caused the erroneous return of theH.Merijn Brand2005-04-111-14/+11
| | | | | removed d_sitecustomize. Mea Culpa. p4raw-id: //depot/perl@24226
* Disable I18N::Langinfo for Win32 since nl_langinfo() isn't availableSteve Hay2005-04-112-7/+1
| | | p4raw-id: //depot/perl@24225
* perlfunc.pod: incomplete select descriptionHernan Perez Masci2005-04-111-0/+6
| | | | | Message-Id: <200504081528.28307.hmasci@uolsinectis.com.ar> p4raw-id: //depot/perl@24224
* Make the four-argument form of select() return undefRafael Garcia-Suarez2005-04-113-3/+8
| | | | | instead of -1 on error. p4raw-id: //depot/perl@24223
* Make Win32 build (and clean) I18::Langinfo and Math::BigInt::FastCalcRafael Garcia-Suarez2005-04-112-1/+13
| | | p4raw-id: //depot/perl@24222
* Re: New Configure functionalityAbe Timmerman2005-04-111-0/+1
| | | | | Message-Id: <200504102219.29024.abe@ztreet.demon.nl> p4raw-id: //depot/perl@24221
* POD typo.Rafael Garcia-Suarez2005-04-101-1/+1
| | | p4raw-id: //depot/perl@24220