summaryrefslogtreecommitdiff
path: root/sv.h
Commit message (Collapse)AuthorAgeFilesLines
* squelch some more type mismatch warningsGurusamy Sarathy2002-04-211-1/+1
| | | | | | SvREFCNT_dec(x ? y : z) did not typecast the right thing due to missing parens in macro definition p4raw-id: //depot/perl@16055
* Retract the UTF-8 filenames patch. This may beJarkko Hietaniemi2002-04-091-1/+0
| | | | | | better dealt with in Perl level, a la File::Spec (since the whole mess is strongly filesystem-specific). p4raw-id: //depot/perl@15835
* There was no nice way of getting in UTF-8 filenames:Jarkko Hietaniemi2002-04-071-0/+1
| | | | | | | | now one can use in the (new) three-arg form of readdir() and in File::Glob import a ":utf8" to transparently accept the filenames as Unicode. Note that only :utf8 is supported, not fancier stuff like :encoding(foobar) p4raw-id: //depot/perl@15776
* Re: the dirty half dozen (Re: perl@15662)Nicholas Clark2002-04-061-1/+1
| | | | | | | Message-ID: <20020405232117.GE323@Bagpuss.unfortu.net> (with the last one reversed) p4raw-id: //depot/perl@15757
* tidy sv.[ch] after CRIPPLED_CC removalDave Mitchell2002-03-231-113/+67
| | | | | Message-ID: <20020323222724.A19425@fdgroup.com> p4raw-id: //depot/perl@15452
* If Unicode keys are entered to a hash, a bit is turned on.Jarkko Hietaniemi2002-03-221-0/+1
| | | | | | | | | | If the bit is on, when the keys are fetched from the hash (%h, each %h, keys %h), the Unicodified versions of the keys are returned if needed. This solution errs on the size of over-Unicodifying, the old solution erred on the side of under-Unicodifying. As long as the hash keys can be a mix of byte and Unicode strings, a perfect fit is hard to come by. p4raw-id: //depot/perl@15407
* -DCRIPPLED_CC RIPDave Mitchell2002-03-211-3/+3
| | | | | Message-ID: <20020321172440.C13683@fdgroup.com> p4raw-id: //depot/perl@15397
* Debugging OPsIlya Zakharevich2002-03-031-1/+1
| | | | | | Message-Id: <20020302054958.A5511@math.ohio-state.edu> p4raw-link: @14577 on //depot/perl: 0ad5258ff3f3328f321188cbb4fcd6a74b365431 p4raw-id: //depot/perl@14956
* Clarify SvPV and SvPV_force api docsSam Tregar2002-02-191-8/+12
| | | | | Message-ID: <Pine.LNX.4.44.0202182305350.10037-100000@localhost.localdomain> p4raw-id: //depot/perl@14768
* Integrate mainlineNick Ing-Simmons2002-01-251-1/+1
| | | | | All but ../lib/Unicode/UCD.t pass. p4raw-id: //depot/perlio@14412
* Nearly-working threads re-structuring. Do not integrate,Nick Ing-Simmons2002-01-191-0/+16
| | | | | submit-ing to get to Win32, and as "off site" backup. p4raw-id: //depot/perlio@14352
* Missed the =head1 additions.Jarkko Hietaniemi2002-01-031-0/+8
| | | p4raw-id: //depot/perl@14041
* Change $=, $., $*, $%, and $- to be IVs instead of longs.Jarkko Hietaniemi2001-11-291-5/+5
| | | p4raw-id: //depot/perl@13346
* a few typo fixes Jeffrey Friedl2001-11-121-8/+8
| | | | | | | | | | | Message-Id: <200111120515.fAC5FIc74795@ventrue.corp.yahoo.com> Patching README.foo instead of pod/perlfoo.pod, not patching Math::BigInt (Tels will take care of that), dropping broken hv.c and sv.h patches, patching libnetcfg.PL and perldoc.PL instead of libnetcfg and perldoc, patching ext/Digest/MD5/t/files.t since MD5.pm was changed. p4raw-id: //depot/perl@12954
* sv.h documentationTim Jenness2001-10-281-7/+7
| | | | | Message-ID: <Pine.LNX.4.33.0110271526270.24647-100000@lapaki> p4raw-id: //depot/perl@12720
* Add a new flag character 'm' to embed.pl set to representNick Ing-Simmons2001-10-201-20/+6
| | | | | | | "functions" which are really macros. Use it foe the troublesome sv_setsv() etc. macros in sv.h - changing latter to define sv_setsv rather than sv_setsv_macro etc. p4raw-id: //depot/perlio@12524
* Skeleton of "PerlIO_dup" coded.Nick Ing-Simmons2001-10-161-5/+5
| | | | | Still-passes all tests non-threaded (well it would wouldn't it!) p4raw-id: //depot/perlio@12451
* Retract the #12259 for now.Jarkko Hietaniemi2001-09-301-0/+6
| | | p4raw-id: //depot/perl@12280
* Re: macro redefinitions on Win32 (was Re: Question about PERLIO)Nicholas Clark2001-09-281-6/+0
| | | | | Message-ID: <20010928233933.C23673@plum.flirble.org> p4raw-id: //depot/perl@12259
* Its a nit!Abhijit Menon-Sen2001-09-171-1/+1
| | | p4raw-id: //depot/perl@12057
* Retract #12013, didn't go over too well in Tru64.Jarkko Hietaniemi2001-09-141-0/+6
| | | p4raw-id: //depot/perl@12015
* (Retracted by #12015)Nicholas Clark2001-09-141-6/+0
| | | | | | Subject: [proposed PATCH] Re: perl@11920 Message-ID: <20010912234609.H4971@plum.flirble.org> p4raw-id: //depot/perl@12013
* Re: [ID 20010825.006] -DCRIPPLED_CC is brokenNicholas Clark2001-09-051-8/+17
| | | | | Message-ID: <20010905205424.C25120@plum.flirble.org> p4raw-id: //depot/perl@11892
* remove deprecated PERL_OBJECT cruft, it has long since stoppedGurusamy Sarathy2001-08-311-1/+1
| | | | | working in 5.7.x p4raw-id: //depot/perl@11803
* Introduces SvREPADTMP(sv) that marks a repad SvIV as a offsetArtur Bergman2001-08-301-0/+8
| | | | | | on the pad. Fixes coredumps in cleanups introduced by Change 11755 p4raw-id: //depot/perl@11790
* Changes USE_THREADS to USE_5005THREADS in the entire source.Artur Bergman2001-08-271-7/+7
| | | | | | Thanks to H. Merijn Brand for the patch. Some of the comments and or guards might be removable in perl.h now. p4raw-id: //depot/perl@11758
* Retract #11212.Jarkko Hietaniemi2001-07-081-2/+1
| | | p4raw-id: //depot/perl@11223
* (Retracted by #11223.)Graham Barr2001-07-081-1/+2
| | | | | | Subject: [PATCH] Re: Problem with Safe.pm and Perl 5.004 Message-Id: <3460FFBA.6DA51F46@ti.com> p4raw-id: //depot/perl@11212
* two little documentation nitsAbhijit Menon-Sen2001-06-271-1/+1
| | | | | Message-ID: <20010627200750.A15756@lustre.lustre.dyn.wiw.org> p4raw-id: //depot/perl@10989
* Adds perl_clone_host under IMPLICIT SYSArtur Bergman2001-06-261-0/+1
| | | | | Message-ID: <B75E5BA5.1A7C%artur@contiller.se> p4raw-id: //depot/perl@10954
* Fixes case of CvDEPTH for perl_cloneArtur Bergman2001-06-201-0/+4
| | | | | Message-ID: <B7563A14.17D8%artur@contiller.se> p4raw-id: //depot/perl@10757
* sv.c documentationDave Mitchell2001-06-181-12/+81
| | | | | Message-Id: <200106172347.AAA05475@gizmo.fdgroup.co.uk> p4raw-id: //depot/perl@10688
* Sigh. This is what #10424 was supposed to check in.Jarkko Hietaniemi2001-06-041-0/+1
| | | p4raw-id: //depot/perl@10433
* Pod nitpicksRichard Soderberg2001-05-281-1/+1
| | | | | Message-ID: <NAEKLNAAHLMBPMPNBMLEOEFGDFAA.rs@crystalflame.net> p4raw-id: //depot/perl@10263
* Re: 5.6.*, bleadperl: bugs in pp_concatHugo van der Sanden2001-05-261-7/+40
| | | | | Message-Id: <200105261605.RAA12295@crypt.compulink.co.uk> p4raw-id: //depot/perl@10223
* Don't think about UTF8 Mike Guy2001-05-241-1/+1
| | | | | Message-Id: <E152CK3-00028O-00@virgo.cus.cam.ac.uk> p4raw-id: //depot/perl@10203
* Fix fordLux2001-04-231-1/+1
| | | | | | | | Subject: [ID 20010423.001] perlapi documentation inconsistency (SvGROW) Message-Id: <E14rTEM-0000CB-00@dl.sch.bme.hu> (SvGROW really does return a char *.) p4raw-id: //depot/perl@9786
* Re: perl@9359 breaks HTML::ParserGisle Aas2001-03-271-3/+5
| | | | | | | | Message-ID: <lrr8zjxb5b.fsf@caliper.ActiveState.com> Clarify the UTF-8 issues of the API docs. (Slightly reworded and expanded.) p4raw-id: //depot/perl@9386
* Re: [patch] Re: PL_ptr_tableDoug MacEachern2001-02-081-0/+4
| | | | | Message-Id: <Pine.LNX.4.21.0102071916270.29229-100000@mako.covalent.net> p4raw-id: //depot/perl@8713
* Bump up Larry's copyright.Jarkko Hietaniemi2001-01-011-1/+1
| | | p4raw-id: //depot/perl@8289
* Return of the IVUV-preservation, now seems to be happy evenJarkko Hietaniemi2000-12-151-0/+10
| | | | | | in Digital UNIX (the broken strtoul brokenness detection seems to have been the fly in the ointment). p4raw-id: //depot/perl@8138
* This seems to be a stage sane and stable enough to checkin.Jarkko Hietaniemi2000-12-151-10/+0
| | | | | (it basically is 8102..8118+8122 but no 8120, 8121, 8123, 8124) p4raw-id: //depot/perl@8125
* faster and 64 bit preserving arithmeticNicholas Clark2000-12-141-0/+10
| | | | | Message-ID: <20001213200849.B71166@plum.flirble.org> p4raw-id: //depot/perl@8119
* Re: [PATCH] The largest hoax of all times?Ilya Zakharevich2000-12-051-0/+1
| | | | | | | | | | | | | | | | | | Date: Tue, 5 Dec 2000 00:40:25 -0500 Message-ID: <20001205004025.A4050@monk.mps.ohio-state.edu> Subject: Re: [PATCH] The largest hoax of all times? From: Ilya Zakharevich <ilya@math.ohio-state.edu> Date: Mon, 4 Dec 2000 23:55:53 -0500 Message-ID: <20001204235553.A1140@monk.mps.ohio-state.edu> Subject: Re: [PATCH] The largest hoax of all times? From: Ilya Zakharevich <ilya@math.ohio-state.edu> Date: Tue, 5 Dec 2000 01:28:45 -0500 Message-ID: <20001205012844.A4227@monk.mps.ohio-state.edu> Fix the unpredictable order of DESTROYs. p4raw-id: //depot/perl@7991
* The one that got away in #7984.Michael Stevens2000-12-051-1/+0
| | | | | | Subject: Re: dTHR - what and why? Message-ID: <20001205111552.A4647@firedrake.org> p4raw-id: //depot/perl@7987
* Retract #7977, still too volatile (the euphemism of the dayJarkko Hietaniemi2000-12-041-1/+1
| | | | | for unfinished and buggy :-) p4raw-id: //depot/perl@7978
* (Retracted by #7978, too shaky yet.)Simon Cozens2000-12-041-1/+1
| | | | | | | | Subject: Re: utf8 in hash keys, implementor missing Message-ID: <20001202194935.A25673@pembro33.pmb.ox.ac.uk> The first step at UTF-8 hash keys. p4raw-id: //depot/perl@7977
* In Amdahl UTS "struct sv" is defined by a system header,Jarkko Hietaniemi2000-10-131-1/+1
| | | | | <ksync.h>. p4raw-id: //depot/perl@7217
* The HINT_BYTE patch is apparently unnecessary, retracted.Jarkko Hietaniemi2000-10-061-4/+0
| | | p4raw-id: //depot/perl@7156
* Patch from Peter Prymmer to disable utf8 in EBCDIC platforms.Jarkko Hietaniemi2000-10-061-0/+4
| | | p4raw-id: //depot/perl@7152