summaryrefslogtreecommitdiff
path: root/proto.h
Commit message (Collapse)AuthorAgeFilesLines
* Patch 3945 was a bit overkeen - the effective parameter to cando() andNicholas Clark2005-11-031-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 win32Nicholas Clark2005-11-011-0/+8
| | | p4raw-id: //depot/perl@25946
* A more elegant way to deal with utf8n_to_uvchr() and utf8n_to_uvuni().Nicholas Clark2005-10-311-0/+16
| | | p4raw-id: //depot/perl@25926
* S_tokereport's unused parmAndy Lester2005-10-311-3/+1
| | | | | Message-ID: <20051031060459.GC10767@petdance.com> p4raw-id: //depot/perl@25914
* Given that sv_nosharing performs the same function as sv_nolockingNicholas Clark2005-10-301-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 argumentNicholas Clark2005-10-301-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 0Nicholas Clark2005-10-301-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 theNicholas Clark2005-10-301-2/+2
| | | | | old body to mathoms.c p4raw-id: //depot/perl@25897
* Replace hv_iternext() with a macro that calls hv_iternext_flags withNicholas Clark2005-10-301-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 Clark2005-10-301-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 extraNicholas Clark2005-10-301-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 twoNicholas Clark2005-10-301-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 twoNicholas Clark2005-10-301-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 toNicholas Clark2005-10-291-4/+4
| | | | | mathoms.c p4raw-id: //depot/perl@25885
* sv_2pv_nolen, sv_2pvbyte_nolen and sv_2pvutf8_nolen can all be replacedNicholas Clark2005-10-291-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 Clark2005-10-291-2/+2
| | | p4raw-id: //depot/perl@25879
* Replace sv_unref with a macro that calls sv_unref_flagsNicholas Clark2005-10-291-2/+2
| | | p4raw-id: //depot/perl@25878
* sv_taint() can easily be replaced by a macro.Nicholas Clark2005-10-291-2/+2
| | | p4raw-id: //depot/perl@25876
* Change 25850 failed to include all changed headersNicholas Clark2005-10-271-0/+2
| | | p4raw-id: //depot/perl@25860
* Add my_sprintf, which is usually just a macro for sprintf, for thoseNicholas Clark2005-10-241-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 handleMarcus Holland-Moritz2005-10-221-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 Houston2005-10-191-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.podSébastien Aperghis-Tramoni2005-10-191-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 someAndy Lester2005-10-131-6/+2
| | | | | Message-ID: <20051013214212.GA1122@petdance.com> p4raw-id: //depot/perl@25754
* Yitzchak points out that this function argument is NULLOKRafael Garcia-Suarez2005-10-031-3/+1
| | | p4raw-id: //depot/perl@25685
* the return value of start_subparse() can legally be ignoredDave Mitchell2005-09-291-3/+1
| | | p4raw-id: //depot/perl@25664
* savepv and savepvn are actually NULLOKNicholas Clark2005-09-281-4/+2
| | | p4raw-id: //depot/perl@25640
* Forgot to run embed.pl after change 25637Nicholas Clark2005-09-281-35/+120
| | | p4raw-id: //depot/perl@25638
* Fix the overriding of CORE::do, just like change 25599Rafael Garcia-Suarez2005-09-271-1/+1
| | | | | was fixing the overriding of CORE::require p4raw-id: //depot/perl@25616
* const sausage const const bacon const tomato and constNicholas Clark2005-09-261-1/+1
| | | | | The search_ext parameter to find_script can be a little more const. p4raw-id: //depot/perl@25605
* quiet a few warningsYitzchak Scott-Thoennes2005-09-231-1/+0
| | | | | Message-ID: <20050922014555.GA2852@efn.org> p4raw-id: //depot/perl@25586
* First argument to he_dup is actually a const HE *Nicholas Clark2005-09-191-1/+1
| | | p4raw-id: //depot/perl@25497
* The return of the constingAndy Lester2005-09-131-58/+224
| | | | | Message-ID: <20050913060835.GA1037@petdance.com> p4raw-id: //depot/perl@25397
* Add the "no 6" / "no v6" syntax.Rafael Garcia-Suarez2005-09-011-0/+4
| | | p4raw-id: //depot/perl@25344
* [Fwd: CPAN Upload: J/JP/JPEACOCK/version-0.47.tar.gz]John Peacock2005-08-241-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.plSteve Hay2005-08-111-20/+53
| | | p4raw-id: //depot/perl@25285
* patch@25279 VMS error handling and const fixesJohn E. Malmberg2005-08-101-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. Malmberg2005-08-011-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 goodnessAndy Lester2005-07-291-27/+71
| | | | | Message-ID: <20050728190956.GB607@petdance.com> p4raw-id: //depot/perl@25243
* tidy up DieNull and DIE_NULLRobin Barker2005-07-281-2/+1
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C75C@hotel.npl.co.uk> p4raw-id: //depot/perl@25237
* support POSIX SA_SIGINFOJarkko Hietaniemi2005-07-201-0/+5
| | | | | Message-ID: <42DE3846.6050606@gmail.com> p4raw-id: //depot/perl@25200
* croak() accepts Nullch as a parameter.Rafael Garcia-Suarez2005-07-201-6/+3
| | | | | (spotted by Stas Bekman) p4raw-id: //depot/perl@25197
* The continuing plod through embed.fncAndy Lester2005-07-181-35/+99
| | | | | Message-ID: <20050718153738.GB20193@petdance.com> p4raw-id: //depot/perl@25172
* more embed cleanupAndy Lester2005-07-151-170/+535
| | | | | | | Message-ID: <20050715155115.GC29983@petdance.com> (and run regen.pl) p4raw-id: //depot/perl@25156
* More embed.fnc plowingAndy Lester2005-07-131-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 ignoredDave Mitchell2005-07-121-1/+0
| | | p4raw-id: //depot/perl@25127
* get_?v have side effects, so their return values may be ignoredDave Mitchell2005-07-121-4/+0
| | | p4raw-id: //depot/perl@25126
* run regen.plDave Mitchell2005-07-101-74/+234
| | | p4raw-id: //depot/perl@25108
* silence some compiler warningsDave Mitchell2005-07-101-2/+0
| | | p4raw-id: //depot/perl@25104
* Remove unnecessary null checkAndy Lester2005-07-041-1/+3
| | | | | Message-ID: <20050704191200.GA2614@petdance.com> p4raw-id: //depot/perl@25079