summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Etta James presents: More constingAndy Lester2005-10-3113-259/+212
| | | | | Message-ID: <20051031054413.GA10767@petdance.com> p4raw-id: //depot/perl@25915
* S_tokereport's unused parmAndy Lester2005-10-314-7/+5
| | | | | Message-ID: <20051031060459.GC10767@petdance.com> p4raw-id: //depot/perl@25914
* Regenerate perlapi.podRafael Garcia-Suarez2005-10-311-278/+289
| | | p4raw-id: //depot/perl@25913
* Robin Houston remarks that mention of a context is missing from theRafael Garcia-Suarez2005-10-311-2/+2
| | | | | threads.pm documentation. p4raw-id: //depot/perl@25912
* perlsio_binmode() is pretty much a mathom on UNIX platforms, but it isSteve Peters2005-10-312-63/+63
| | | | | used on Cygwin, at least. p4raw-id: //depot/perl@25911
* const const bad bad.Nicholas Clark2005-10-301-1/+1
| | | | | | gcc bad bad too, because it didn't grumble one bit. (or two, for that matter). p4raw-id: //depot/perl@25910
* is_utf8_alnum() and is_utf8_alnumc() can use is_utf8_common() too.Nicholas Clark2005-10-301-27/+5
| | | p4raw-id: //depot/perl@25909
* Jarkko and I think that Perl_is_utf8_alnumc should be initialisingNicholas Clark2005-10-301-3/+3
| | | | | and using PL_utf8_alnum*c*, not PL_utf8_alnum. p4raw-id: //depot/perl@25908
* Perl_is_utf8_* share a lot of common code. Pull that out into a newNicholas Clark2005-10-301-70/+26
| | | | | function S_is_utf8_common. p4raw-id: //depot/perl@25907
* Given that sv_nosharing performs the same function as sv_nolockingNicholas Clark2005-10-306-45/+46
| | | | | | | and sv_unnolocking (ie sweet FA), we might as well use the 1 function to initialise all 3 variables, and elimiate the other two. For some reason all 3 are listed as being in the public API. Daft. p4raw-id: //depot/perl@25906
* Replace uvuni_to_utf8() with a macro that passes the extra 0 argumentNicholas Clark2005-10-306-11/+10
| | | | | to uvuni_to_utf8_flags(). Move the old body to mathoms.c p4raw-id: //depot/perl@25905
* global.sym appears to have become out of date. Oops.Nicholas Clark2005-10-301-0/+2
| | | p4raw-id: //depot/perl@25904
* Replace is_utf8_string_loc() with a macro that passes the extra 0Nicholas Clark2005-10-306-23/+22
| | | | | | argument to is_utf8_string_loc(). Correct the description of its parameters in its POD. p4raw-id: //depot/perl@25903
* Fix typos in comments.Nicholas Clark2005-10-301-2/+2
| | | p4raw-id: //depot/perl@25902
* Functions that die aren't exactly well used code.Nicholas Clark2005-10-304-34/+34
| | | | | (ck_retarget, oopsCV, pp_padany, pp_threadsv, pp_mapstart) p4raw-id: //depot/perl@25901
* save_hints is a mathom.Nicholas Clark2005-10-302-7/+7
| | | p4raw-id: //depot/perl@25900
* I infer that change 25891 as-is would break OS2. This should fix it.Nicholas Clark2005-10-301-2/+4
| | | p4raw-id: //depot/perl@25899
* init_i18nl14n is a mathom.Nicholas Clark2005-10-302-7/+7
| | | p4raw-id: //depot/perl@25898
* Replace hv_magic() with a macro to call sv_magic() directly. Move theNicholas Clark2005-10-306-21/+23
| | | | | old body to mathoms.c p4raw-id: //depot/perl@25897
* Fix win32 breakage inadvertently introduced by 25889Nicholas Clark2005-10-301-1/+4
| | | p4raw-id: //depot/perl@25896
* Replace hv_iternext() with a macro that calls hv_iternext_flags withNicholas Clark2005-10-306-15/+13
| | | | | an extra 0 argument. Move the old body to mathoms.c p4raw-id: //depot/perl@25895
* Fix typo in comment.Nicholas Clark2005-10-301-1/+1
| | | p4raw-id: //depot/perl@25894
* Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload()Nicholas Clark2005-10-306-19/+18
| | | | | with the extra TRUE argument. p4raw-id: //depot/perl@25893
* I think we have a winner. do_pipe hasn't been called since 4.036.Nicholas Clark2005-10-302-46/+46
| | | | | Maybe we should just remove this appendix. p4raw-id: //depot/perl@25892
* Replace do_aexec() with a macro to call do_aexec5() with the two extraNicholas Clark2005-10-306-14/+15
| | | | | 0 arguments. Move the old body to mathoms.c p4raw-id: //depot/perl@25891
* Replace do_exec() with a macro to call do_exec3() with the extra twoNicholas Clark2005-10-306-12/+19
| | | | | 0 arguments. Move the old body to mathoms.c p4raw-id: //depot/perl@25890
* Replace do_open() with a macro to call do_openn() with the extra twoNicholas Clark2005-10-306-14/+14
| | | | | 0 paramters. Move the old body to mathoms.c. p4raw-id: //depot/perl@25889
* warnings.pl/pm: Croaker function: bug (perl v5.8, v5.9)Bram2005-10-302-0/+2
| | | | | Message-Id: <42F28ED5.CFFDCCFD@wizbit.be> p4raw-id: //depot/perl@25888
* Re: [PATCH] predecrement vs postdecrementJarkko Hietaniemi2005-10-291-1/+1
| | | | | | | Message-ID: <4363DA81.6060600@gmail.com> Nit in pod/perlhack.pod p4raw-id: //depot/perl@25887
* Replace the body of the rarely used sv_setpviv_mg with a call toNicholas Clark2005-10-291-5/+1
| | | | | sv_setpviv followed by SvSETMAGIC. p4raw-id: //depot/perl@25886
* Replace sv_catsv_mg and sv_catpvn_mg, and move the obsolete bodies toNicholas Clark2005-10-296-38/+37
| | | | | mathoms.c p4raw-id: //depot/perl@25885
* Add a new SMAGIC flag, to signal a call to SvSETMAGIC. Add it toNicholas Clark2005-10-292-27/+30
| | | | | | | sv_catpvn_flags and sv_catsv_flags, and then re-implement sv_catpvn_mg and sv_catsv_mg as calls to sv_catpvn_flags and sv_catsv_flags respectively. p4raw-id: //depot/perl@25884
* sv_2pv_nolen, sv_2pvbyte_nolen and sv_2pvutf8_nolen can all be replacedNicholas Clark2005-10-296-63/+60
| | | | | with terse macros, and the function bodies retired. p4raw-id: //depot/perl@25883
* All the private implementations of @foo for compilers that can't doNicholas Clark2005-10-292-139/+135
| | | | | | complex macro expansions became dead wood sometime around 5.7.3 (Don't tell Otava this) p4raw-id: //depot/perl@25882
* [perl #30563] [PATCH] Storable::dclone fails for tied elementsSrezic@Iconmobile.Com2005-10-293-2/+29
| | | | | | | Message-ID: <rt-3.0.11-30563-91788.4.94870186951744@perl.org> Also, a version bump to Storable.pm. p4raw-id: //depot/perl@25881
* sv_utf8_upgrade declares itself to be a mathom, so off it goes.Nicholas Clark2005-10-292-21/+10
| | | | | Remove duplicate declaration of Perl_sv_2uv p4raw-id: //depot/perl@25880
* Replace sv_force_normal with a macro that calls sv_force_normal_flags.Nicholas Clark2005-10-296-22/+20
| | | p4raw-id: //depot/perl@25879
* Replace sv_unref with a macro that calls sv_unref_flagsNicholas Clark2005-10-296-22/+22
| | | p4raw-id: //depot/perl@25878
* Oops, missed an sv_force_normal()Steve Peters2005-10-291-1/+1
| | | p4raw-id: //depot/perl@25877
* sv_taint() can easily be replaced by a macro.Nicholas Clark2005-10-296-18/+18
| | | p4raw-id: //depot/perl@25876
* Change to use sv_force_normal_flags() directly, rather than callingSteve Peters2005-10-292-2/+2
| | | | | sv_force_normal() to call sv_force_normal_flags(). p4raw-id: //depot/perl@25875
* A terser implementation of S_varname, by using and post-processingNicholas Clark2005-10-291-21/+13
| | | | | gv_fullname4 p4raw-id: //depot/perl@25874
* Additional mathoms from doio.cSteve Peters2005-10-292-24/+26
| | | p4raw-id: //depot/perl@25873
* Coverage stats say av_fake() is a mathom too.Steve Peters2005-10-292-22/+22
| | | p4raw-id: //depot/perl@25872
* gv_fullname3 and gv_efullname3 are definately mathoms. They even say so.Nicholas Clark2005-10-292-12/+12
| | | p4raw-id: //depot/perl@25871
* Re: [PATCH] predecrement vs postdecrementJarkko Hietaniemi2005-10-291-1/+1
| | | | | Message-ID: <43633849.6060809@gmail.com> p4raw-id: //depot/perl@25870
* gv_fullname and gv_efullname are definately mathoms.Nicholas Clark2005-10-292-16/+16
| | | p4raw-id: //depot/perl@25869
* perl5db.pl incorrect instructions in termination messageBrendan O'Dea2005-10-281-2/+2
| | | | | Message-ID: <20051028211440.GA23305@londo.c47.org> p4raw-id: //depot/perl@25868
* Makefiles like tabs, not spaces.Steve Peters2005-10-282-2/+2
| | | p4raw-id: //depot/perl@25867
* Add a new file, mathoms.c, to hold old code kept around for binarySteve Peters2005-10-2816-270/+328
| | | | | | | compatability with previous versions of Perl. Change also includes various Makefile changes to compile the new file and link it into libperl. p4raw-id: //depot/perl@25866