Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch 3945 was a bit overkeen - the effective parameter to cando() and | Nicholas Clark | 2005-11-03 | 1 | -2/+2 |
| | | | | | ingroup() is a boolean flag, not a GID or UID. p4raw-id: //depot/perl@25969 | ||||
* | This should clear up 'Perl_do_exec' undefined; warnings on win32 | Nicholas Clark | 2005-11-01 | 1 | -0/+8 |
| | | | p4raw-id: //depot/perl@25946 | ||||
* | A more elegant way to deal with utf8n_to_uvchr() and utf8n_to_uvuni(). | Nicholas Clark | 2005-10-31 | 1 | -0/+16 |
| | | | p4raw-id: //depot/perl@25926 | ||||
* | S_tokereport's unused parm | Andy Lester | 2005-10-31 | 1 | -3/+1 |
| | | | | | Message-ID: <20051031060459.GC10767@petdance.com> p4raw-id: //depot/perl@25914 | ||||
* | Given that sv_nosharing performs the same function as sv_nolocking | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | | | 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 argument | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | to uvuni_to_utf8_flags(). Move the old body to mathoms.c p4raw-id: //depot/perl@25905 | ||||
* | Replace is_utf8_string_loc() with a macro that passes the extra 0 | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | | argument to is_utf8_string_loc(). Correct the description of its parameters in its POD. p4raw-id: //depot/perl@25903 | ||||
* | Replace hv_magic() with a macro to call sv_magic() directly. Move the | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | old body to mathoms.c p4raw-id: //depot/perl@25897 | ||||
* | Replace hv_iternext() with a macro that calls hv_iternext_flags with | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | an extra 0 argument. Move the old body to mathoms.c p4raw-id: //depot/perl@25895 | ||||
* | Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload() | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | with the extra TRUE argument. p4raw-id: //depot/perl@25893 | ||||
* | Replace do_aexec() with a macro to call do_aexec5() with the two extra | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | 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 two | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | 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 two | Nicholas Clark | 2005-10-30 | 1 | -2/+2 |
| | | | | | 0 paramters. Move the old body to mathoms.c. p4raw-id: //depot/perl@25889 | ||||
* | Replace sv_catsv_mg and sv_catpvn_mg, and move the obsolete bodies to | Nicholas Clark | 2005-10-29 | 1 | -4/+4 |
| | | | | | mathoms.c p4raw-id: //depot/perl@25885 | ||||
* | sv_2pv_nolen, sv_2pvbyte_nolen and sv_2pvutf8_nolen can all be replaced | Nicholas Clark | 2005-10-29 | 1 | -6/+6 |
| | | | | | with terse macros, and the function bodies retired. p4raw-id: //depot/perl@25883 | ||||
* | Replace sv_force_normal with a macro that calls sv_force_normal_flags. | Nicholas Clark | 2005-10-29 | 1 | -2/+2 |
| | | | p4raw-id: //depot/perl@25879 | ||||
* | Replace sv_unref with a macro that calls sv_unref_flags | Nicholas Clark | 2005-10-29 | 1 | -2/+2 |
| | | | p4raw-id: //depot/perl@25878 | ||||
* | sv_taint() can easily be replaced by a macro. | Nicholas Clark | 2005-10-29 | 1 | -2/+2 |
| | | | p4raw-id: //depot/perl@25876 | ||||
* | Change 25850 failed to include all changed headers | Nicholas Clark | 2005-10-27 | 1 | -0/+2 |
| | | | p4raw-id: //depot/perl@25860 | ||||
* | Add my_sprintf, which is usually just a macro for sprintf, for those | Nicholas Clark | 2005-10-24 | 1 | -0/+7 |
| | | | | | | | places where we want to use the return value of sprintf. This allows a wrapper to be used for platforms where the C library isn't ANSI- conformant. p4raw-id: //depot/perl@25832 | ||||
* | Turn NN to NULLOK for functions that have code to handle | Marcus Holland-Moritz | 2005-10-22 | 1 | -13/+5 |
| | | | | | | | the ptr == NULL case and are currently called with NULL pointers. Having parameters tagged NN can make gcc optimize away the code for the NULL case, causing segfaults. p4raw-id: //depot/perl@25822 | ||||
* | Re: [PATCH] Re: [perl #37350] $#{@$aref} in debugger gives: Bizarre copy of ↵ | Robin Houston | 2005-10-19 | 1 | -1/+4 |
| | | | | | | | ARRAY in leave Message-ID: <20051013235457.GA23386@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@25808 | ||||
* | Adding documentation index to perlapi.pod and perlintern.pod | Sébastien Aperghis-Tramoni | 2005-10-19 | 1 | -1/+1 |
| | | | | | | | | Message-ID: <1129666977.435559a10cb95@imp5-g19.free.fr> (tweaked to remove trailing whitespace to doc entries) Plus, regenerate doc and headers p4raw-id: //depot/perl@25802 | ||||
* | Stas' croak patch and then some | Andy Lester | 2005-10-13 | 1 | -6/+2 |
| | | | | | Message-ID: <20051013214212.GA1122@petdance.com> p4raw-id: //depot/perl@25754 | ||||
* | Yitzchak points out that this function argument is NULLOK | Rafael Garcia-Suarez | 2005-10-03 | 1 | -3/+1 |
| | | | p4raw-id: //depot/perl@25685 | ||||
* | the return value of start_subparse() can legally be ignored | Dave Mitchell | 2005-09-29 | 1 | -3/+1 |
| | | | p4raw-id: //depot/perl@25664 | ||||
* | savepv and savepvn are actually NULLOK | Nicholas Clark | 2005-09-28 | 1 | -4/+2 |
| | | | p4raw-id: //depot/perl@25640 | ||||
* | Forgot to run embed.pl after change 25637 | Nicholas Clark | 2005-09-28 | 1 | -35/+120 |
| | | | p4raw-id: //depot/perl@25638 | ||||
* | Fix the overriding of CORE::do, just like change 25599 | Rafael Garcia-Suarez | 2005-09-27 | 1 | -1/+1 |
| | | | | | was fixing the overriding of CORE::require p4raw-id: //depot/perl@25616 | ||||
* | const sausage const const bacon const tomato and const | Nicholas Clark | 2005-09-26 | 1 | -1/+1 |
| | | | | | The search_ext parameter to find_script can be a little more const. p4raw-id: //depot/perl@25605 | ||||
* | quiet a few warnings | Yitzchak Scott-Thoennes | 2005-09-23 | 1 | -1/+0 |
| | | | | | Message-ID: <20050922014555.GA2852@efn.org> p4raw-id: //depot/perl@25586 | ||||
* | First argument to he_dup is actually a const HE * | Nicholas Clark | 2005-09-19 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@25497 | ||||
* | The return of the consting | Andy Lester | 2005-09-13 | 1 | -58/+224 |
| | | | | | Message-ID: <20050913060835.GA1037@petdance.com> p4raw-id: //depot/perl@25397 | ||||
* | Add the "no 6" / "no v6" syntax. | Rafael Garcia-Suarez | 2005-09-01 | 1 | -0/+4 |
| | | | p4raw-id: //depot/perl@25344 | ||||
* | [Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.47.tar.gz] | John Peacock | 2005-08-24 | 1 | -0/+3 |
| | | | | | | From: "John Peacock" <jpeacock@rowman.com> Message-ID: <2444.85.65.24.143.1124818871.squirrel@webmail.rowman.com> p4raw-id: //depot/perl@25325 | ||||
* | Run regen.pl | Steve Hay | 2005-08-11 | 1 | -20/+53 |
| | | | p4raw-id: //depot/perl@25285 | ||||
* | patch@25279 VMS error handling and const fixes | John E. Malmberg | 2005-08-10 | 1 | -6/+6 |
| | | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net> Message-ID: <42F98479.6030207@qsl.net> p4raw-id: //depot/perl@25280 | ||||
* | Re: blead@25210 on OpenVMS (not good) | John E. Malmberg | 2005-08-01 | 1 | -1/+1 |
| | | | | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net> Message-ID: <42E41F8D.3040306@qsl.net> constify Perl_unlnk p4raw-id: //depot/perl@25251 | ||||
* | More embed.fnc goodness | Andy Lester | 2005-07-29 | 1 | -27/+71 |
| | | | | | Message-ID: <20050728190956.GB607@petdance.com> p4raw-id: //depot/perl@25243 | ||||
* | tidy up DieNull and DIE_NULL | Robin Barker | 2005-07-28 | 1 | -2/+1 |
| | | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C75C@hotel.npl.co.uk> p4raw-id: //depot/perl@25237 | ||||
* | support POSIX SA_SIGINFO | Jarkko Hietaniemi | 2005-07-20 | 1 | -0/+5 |
| | | | | | Message-ID: <42DE3846.6050606@gmail.com> p4raw-id: //depot/perl@25200 | ||||
* | croak() accepts Nullch as a parameter. | Rafael Garcia-Suarez | 2005-07-20 | 1 | -6/+3 |
| | | | | | (spotted by Stas Bekman) p4raw-id: //depot/perl@25197 | ||||
* | The continuing plod through embed.fnc | Andy Lester | 2005-07-18 | 1 | -35/+99 |
| | | | | | Message-ID: <20050718153738.GB20193@petdance.com> p4raw-id: //depot/perl@25172 | ||||
* | more embed cleanup | Andy Lester | 2005-07-15 | 1 | -170/+535 |
| | | | | | | | Message-ID: <20050715155115.GC29983@petdance.com> (and run regen.pl) p4raw-id: //depot/perl@25156 | ||||
* | More embed.fnc plowing | Andy Lester | 2005-07-13 | 1 | -44/+148 |
| | | | | | Message-ID: <20050713154919.GA24586@petdance.com> p4raw-id: //depot/perl@25138 | ||||
* | S_pad_findlex has side effects, so its return value may be ignored | Dave Mitchell | 2005-07-12 | 1 | -1/+0 |
| | | | p4raw-id: //depot/perl@25127 | ||||
* | get_?v have side effects, so their return values may be ignored | Dave Mitchell | 2005-07-12 | 1 | -4/+0 |
| | | | p4raw-id: //depot/perl@25126 | ||||
* | run regen.pl | Dave Mitchell | 2005-07-10 | 1 | -74/+234 |
| | | | p4raw-id: //depot/perl@25108 | ||||
* | silence some compiler warnings | Dave Mitchell | 2005-07-10 | 1 | -2/+0 |
| | | | p4raw-id: //depot/perl@25104 | ||||
* | Remove unnecessary null check | Andy Lester | 2005-07-04 | 1 | -1/+3 |
| | | | | | Message-ID: <20050704191200.GA2614@petdance.com> p4raw-id: //depot/perl@25079 |