summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Collapse)AuthorAgeFilesLines
* Re: [PATCH] Basic bad prototype detectionSam Tregar2001-12-311-4/+7
| | | | | Message-ID: <Pine.LNX.4.33.0112310017090.9102-200000@localhost.localdomain> p4raw-id: //depot/perl@13974
* Basic bad prototype detectionSam Tregar2001-12-311-1/+4
| | | | | Message-ID: <Pine.LNX.4.33.0112301948270.9102-200000@localhost.localdomain> p4raw-id: //depot/perl@13971
* [PATCH] Re: chomp/chop prototype changed?Rafael Garcia-Suarez2001-12-171-2/+2
| | | | | | | | | | | Date: Mon, 17 Dec 2001 16:37:18 +0100 Message-ID: <20011217163718.A2292@rafael> Subject: Re: [PATCH] Re: chomp/chop prototype changed? From: Rafael Garcia-Suarez <rgarciasuarez@free.fr> Date: Mon, 17 Dec 2001 23:17:06 +0100 Message-ID: <20011217231706.A730@rafael> p4raw-id: //depot/perl@13747
* Fixes for casting problems detected on a SuSE 7.2 Itanium,Jarkko Hietaniemi2001-12-121-3/+3
| | | | | | mostly gcc -Wall complaining about the argument of %p not being a void *. p4raw-id: //depot/perl@13659
* autosplit into @F fixRafael Garcia-Suarez2001-11-291-1/+1
| | | | | Message-ID: <20011129145223.A25817@rafael> p4raw-id: //depot/perl@13360
* v-strings as Objects Step 1John Peacock2001-11-151-53/+3
| | | | | Message-ID: <3BF3FE30.70D7EDCA@rowman.com> p4raw-id: //depot/perl@13028
* Re: [ID 20011114.118] chop and chomp bind too tightlyRafael Garcia-Suarez2001-11-151-2/+2
| | | | | | | | | Message-Id: <slrn9v70s9.gqe.rgarciasuarez@rafael.kazibao.net> chop() and chomp() are not real list functions, so let's not have them overrideable. (Casey will be confused since in #7071 he patched the other way.) p4raw-id: //depot/perl@13018
* Add comments to mark where $^X is being handled.Jarkko Hietaniemi2001-11-141-1/+1
| | | p4raw-id: //depot/perl@13000
* -s on #! line Rafael Garcia-Suarez2001-11-081-0/+9
| | | | | Message-ID: <20011107222339.E729@rafael> p4raw-id: //depot/perl@12900
* Re: [ID 20011106.083] $dbline[$i] == 0 generates warningsMark-Jason Dominus2001-11-071-0/+10
| | | | | Message-Id: <20011107054346.14428.qmail@plover.com> p4raw-id: //depot/perl@12882
* Comment tweaks.Jarkko Hietaniemi2001-11-011-2/+2
| | | p4raw-id: //depot/perl@12801
* Make sv_recode_to_utf8() a real API: the encodingJarkko Hietaniemi2001-10-311-1/+1
| | | | | | is a parameter, instead of a global. Document the PERL_ENCODING. p4raw-id: //depot/perl@12783
* Enable -Mencoding=foobar also for string literals.Jarkko Hietaniemi2001-10-311-0/+5
| | | p4raw-id: //depot/perl@12782
* Integrate maintperl changes #12268 and #12669;Jarkko Hietaniemi2001-10-261-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | final touches to the audit for statics and thread-unsafe code * make DB_File, ODBM_File thread-safe * remove unnecessary/dangerous statics and protect others from not getting accidentally enabled under threaded perls windows support functions get_childdir() et al aren't exported correctly under vanilla build Testing under win32 appreciated since changes there had to be manually merged and I cannot test how badly did I do. p4raw-link: @12268 on //depot/perlio: bb407f0b8769c638c05e60ebfd157a1e676a6c22 p4raw-id: //depot/perl@12678 p4raw-integrated: from //depot/maint-5.6/perl@12677 'copy in' win32/vmem.h (@5902..) 'merge in' ext/DB_File/DB_File.xs (@8693..) win32/win32iop.h (@8917..) ext/ODBM_File/ODBM_File.xs (@8995..) iperlsys.h (@9154..) scope.c (@9584..) makedef.pl (@11425..) gv.c (@12026..) op.c (@12145..) util.c (@12220..) toke.c (@12550..) ext/B/B.xs ext/File/Glob/Glob.xs ext/Opcode/Opcode.xs ext/re/re.xs (@12653..) mg.c win32/win32.c (@12668..)
* Integrate changes #12549 and #12550 from maintperl;Jarkko Hietaniemi2001-10-221-4/+21
| | | | | | | | | | | readline() doesn't work with our variables; it confuses them with my variables (change#4227 was incomplete) p4raw-link: @12549 on //depot/maint-5.6/perl: 5e948b4e169e88676c1f1359a0a62d670c4b4221 p4raw-link: @4227 on //depot/perl: 77ca0c92d2c0e47301d906d355d9ab3afb6f6bcb p4raw-id: //depot/perl@12561 p4raw-integrated: from //depot/maint-5.6/perl@12558 'copy in' t/base/rs.t (@8152..) 'edit in' toke.c (@12549..)
* Oh, bother. In Tru64 cc -std1 was looking rather niceJarkko Hietaniemi2001-10-171-1/+1
| | | | | | | | | | in speed (upto 20% speedup in certain operations) but meanwhile regexps and arithmetics got slower (5-10%) (according to perlbench average speedup is negligible, and within measuring flutter, 1%). Therefore retracting all the changes aimed at getting -std1 to compile cleanly: #12475, #12476, #12479, #12480, #12481, #12482, #12483, #12484. p4raw-id: //depot/perl@12485
* (retracted by #12485)Jarkko Hietaniemi2001-10-171-1/+1
| | | | | | Avoid dollar signs in identifiers (in non-VMS) to placate ultra picky ANSI compilers (such as DEC^WCPQ^WHP). p4raw-id: //depot/perl@12475
* Re: [ID 20010920.007] q and qq does not work after doRafael Garcia-Suarez2001-09-211-1/+1
| | | | | Message-Id: <slrn9qm1ca.h6b.rgarciasuarez@rafael.kazibao.net> p4raw-id: //depot/perl@12108
* Re: [ID 20010815.012] Unfortunate interaction between -0 cmd line arg & ↵Hugo van der Sanden2001-09-151-2/+0
| | | | | | | (??{CODE}) regex Message-Id: <200109091741.f89HfsM18534@crypt.compulink.co.uk> p4raw-id: //depot/perl@12027
* Re: the remaining bugs in \x escapes (was Re: [PATCH] oct and hex in ↵Nicholas Clark2001-09-101-2/+3
| | | | | | | glorious 64 bit (with less bugs) (was Re: hex and oct again (was Re: FreeBSD MD5 crypt? Re: crypt/hex/oct and Unicode?))) Message-ID: <20010911000031.G1512@plum.flirble.org> p4raw-id: //depot/perl@11990
* Re: [ID 20010810.011] 'use v2b' not allowed with strictRafael Garcia-Suarez2001-09-091-9/+21
| | | | | | Message-ID: <20010813225159.C6681@rafael> (Applied with several tweaks.) p4raw-id: //depot/perl@11966
* oct and hex in glorious 64 bit (with less bugs) (was Re: hex and oct again ↵Nicholas Clark2001-09-051-7/+11
| | | | | | | (was Re: FreeBSD MD5 crypt? Re: crypt/hex/oct and Unicode?)) Message-ID: <20010904224250.P25120@plum.flirble.org> p4raw-id: //depot/perl@11874
* 'main' *is* a reserved wordRafael Garcia-Suarez2001-09-041-1/+1
| | | | | Message-ID: <20010903225541.A24097@rafael> p4raw-id: //depot/perl@11861
* remove deprecated PERL_OBJECT cruft, it has long since stoppedGurusamy Sarathy2001-08-311-11/+7
| | | | | working in 5.7.x p4raw-id: //depot/perl@11803
* Changes USE_THREADS to USE_5005THREADS in the entire source.Artur Bergman2001-08-271-8/+8
| | | | | | 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
* If you want you can now add -DUSE_UTF8_SCRIPTS to your cflagsJarkko Hietaniemi2001-08-121-4/+7
| | | | | | and the Perl will be built to do that by default (adding that will break scripts having non-UTF-8 binary data, such as Latin-1.) p4raw-id: //depot/perl@11656
* eval "format foo=" would loop indefinitely; reported inMike Guy2001-07-311-7/+11
| | | | | | | | Subject: A load of old rubbish Message-Id: <E14zK1G-0003a2-00@virgo.cus.cam.ac.uk> (The core dumps reported in there already fixed.) p4raw-id: //depot/perl@11510
* Re: [PATCH: perl@11181] UCD.t fails LATIN|Latin testMark-Jason Dominus2001-07-121-12/+0
| | | | | | | Message-ID: <20010712045931.8543.qmail@plover.com> Remove the chmod/umask leading zero warning. p4raw-id: //depot/perl@11290
* Retract #11166 (and #11237).Jarkko Hietaniemi2001-07-121-7/+14
| | | p4raw-id: //depot/perl@11285
* Retract #11212.Jarkko Hietaniemi2001-07-081-1/+0
| | | p4raw-id: //depot/perl@11223
* Slight tweaks on #11213.Jarkko Hietaniemi2001-07-081-2/+3
| | | p4raw-id: //depot/perl@11215
* Simplify yytoke()Simon Cozens2001-07-081-126/+132
| | | | | | | Message-ID: <20010708132434.A9448@deep-dark-truthful-mirror> Split out pending_ident(). p4raw-id: //depot/perl@11213
* (Retracted by #11223.)Graham Barr2001-07-081-0/+1
| | | | | | Subject: [PATCH] Re: Problem with Safe.pm and Perl 5.004 Message-Id: <3460FFBA.6DA51F46@ti.com> p4raw-id: //depot/perl@11212
* Re: op/arith.tNicholas Clark2001-07-071-70/+18
| | | | | Message-ID: <20010707130454.D59620@plum.flirble.org> p4raw-id: //depot/perl@11190
* (Retracted by #11285.)Abhijit Menon-Sen2001-07-061-14/+7
| | | | | | Subject: Re: [PATCH] mkdir() mode argument is missing initial 0 Message-ID: <20010706012632.A28327@lustre.dyn.wiw.org> p4raw-id: //depot/perl@11166
* autosplit into @FRobin Houston2001-07-021-5/+2
| | | | | Message-Id: <E15HC3M-0007jL-00.2001-07-02-23-20-24@mail18.svr.pol.co.uk> p4raw-id: //depot/perl@11110
* Re: [PATH] shared -> unique;Abhijit Menon-Sen2001-07-021-1/+1
| | | | | Message-ID: <20010627035127.A17623@lustre.lustre.dyn.wiw.org> p4raw-id: //depot/perl@11089
* win32 fixes: fix various syntax errors ("no preprocessor directivesGurusamy Sarathy2001-07-021-2/+2
| | | | | | within macro arguments") and warnings ("unary minus applied to unsigned type", among others) p4raw-id: //depot/perl@11066
* [PATH] shared -> unique;Artur Bergman2001-06-261-1/+1
| | | | | | | Message-ID: <002001c0fe4a$e623ba30$21000a0a@vogw2kdev> Because "shared" isn't: it's read-only. p4raw-id: //depot/perl@10959
* Re: [ID 20010621.007] readline() not quite as equal as <>Abhijit Menon-Sen2001-06-251-1/+1
| | | | | | | Message-ID: <20010623051744.A18583@lustre.linux.in> (Can't think of a good place to put tests.) p4raw-id: //depot/perl@10910
* Fix for ID 20010619.002 "When building hash, hash keys thatJarkko Hietaniemi2001-06-201-2/+3
| | | | | are function calls are not being called", from Abhijit. p4raw-id: //depot/perl@10763
* Integrate change #10739 from maintperl:Jarkko Hietaniemi2001-06-201-1/+1
| | | | | | | | | C<eval "/x$\r\n/x"> fails to compile correctly p4raw-link: @10739 on //depot/maint-5.6/perl: a3d864e88a38f4417518c9eac1d0058e2537efe7 p4raw-id: //depot/perl@10742 p4raw-integrated: from //depot/maint-5.6/perl@10741 'merge in' t/op/pat.t (@9675..) toke.c (@10158..)
* NetWare port from Guruprasad S <SGURUPRASAD@novell.com>.Jarkko Hietaniemi2001-06-161-0/+4
| | | p4raw-id: //depot/perl@10643
* -Wall cleanup continues.Jarkko Hietaniemi2001-06-021-0/+4
| | | p4raw-id: //depot/perl@10392
* [PATCH] DEBUG_* macro cleanupsAbhijit Menon-Sen2001-05-311-14/+14
| | | | | | | | | | | | | | Date: Thu, 31 May 2001 12:16:22 +0530 Message-ID: <20010531121622.B4829@lustre.linux.in> Subject: Re: [PATCH] DEBUG_* macro cleanups From: Abhijit Menon-Sen <ams@wiw.org> Date: Thu, 31 May 2001 13:57:01 +0530 Message-ID: <20010531135701.A21775@lustre.linux.in> (The DEBUG_ definitions in perl.h changed to use the STMT_START and STMT_END.) p4raw-id: //depot/perl@10353
* Salvage bits and pieces from the experimental 'utf8 everywhere'Jarkko Hietaniemi2001-05-311-4/+4
| | | | | | patch: rename HINT_BYTE and IN_BYTE to HINT_BYTES and IN_BYTES to match the pragma name; various robustness cleanups. p4raw-id: //depot/perl@10339
* More -Wall sweeping.Jarkko Hietaniemi2001-05-301-6/+5
| | | p4raw-id: //depot/perl@10338
* Add a test for 20010528.007, fixed in #10272.Jarkko Hietaniemi2001-05-291-1/+1
| | | p4raw-id: //depot/perl@10273
* Re: [ID 20010528.007] "\x{" causes panic:constant overflowed allocated space Hugo van der Sanden2001-05-291-5/+5
| | | | | Message-Id: <200105282323.AAA07930@crypt.compulink.co.uk> p4raw-id: //depot/perl@10272
* Re: [ID 20010422.005] perl -e '{s//${}/; //}' # segfaults on FreeBSD Spider Boardman2001-05-281-1/+10
| | | | | Message-Id: <200105281039.GAA03962@Orb.Nashua.NH.US> p4raw-id: //depot/perl@10250