summaryrefslogtreecommitdiff
path: root/toke.c
Commit message (Expand)AuthorAgeFilesLines
* potential [PATCH] Tru64 crank up strictnessJarkko Hietaniemi2005-05-101-3/+20
* Add editor boilerplates to all C filesRafael Garcia-Suarez2005-05-101-1/+1
* s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/Nicholas Clark2005-05-101-4/+4
* attributes-two.patch, the next batchAndy Lester2005-05-091-63/+55
* Sv_*set() doc's and extra const's for the SvPVX_const() tasksSteve Peters2005-05-091-1/+1
* combopatchJarkko Hietaniemi2005-04-251-1/+1
* Symbian port of PerlJarkko Hietaniemi2005-04-211-17/+26
* Refactoring to Sv*_set() macros - patch #5Steve Peters2005-04-191-2/+2
* SvPV_renew also calls SvLEN_setNicholas Clark2005-04-181-4/+11
* Replace Renew(SvPVX(...)...) with SvPV_renew, which avoids an LVALUENicholas Clark2005-04-181-3/+3
* -Wformat Robin Barker2005-04-131-2/+2
* Refactoring to Sv*_set() macros - patch #2Steve Peters2005-04-081-9/+9
* Refactoring to Sv*_set() macros - patch #1Steve Peters2005-04-081-1/+1
* Add casting to allow g++ (3.3.5) to compile the core code.Nicholas Clark2005-04-051-1/+1
* Consting fiveAndy Lester2005-03-251-5/+5
* Consting part 4Andy Lester2005-03-251-8/+12
* Forbid the -C option on the command-lineRafael Garcia-Suarez2005-03-221-1/+1
* More consting goodnessAndy Lester2005-03-211-44/+44
* Remove an useless line, spotted by Andy LesterRafael Garcia-Suarez2005-03-181-1/+0
* More const parmsAndy Lester2005-03-181-2/+2
* Regenerate Perl_keyword() to remove superfluous goto statements.Marcus Holland-Moritz2005-02-141-44/+0
* Make Perl_keyword() another 30% faster.Marcus Holland-Moritz2005-01-311-1316/+3325
* Ooops. It was 190M when I was using 4 bytes per entry for lengths inNicholas Clark2005-01-241-1/+1
* Replace Perl_keyword() with a version that's 20% faster on typicalNicholas Clark2005-01-241-584/+1311
* Re: uc($long_utf8_string) exhausts memoryJarkko Hietaniemi2005-01-221-3/+3
* sv_catpvf holds no advantage over sv_catpv when the "pattern" isn't.Nicholas Clark2005-01-141-2/+2
* replace NEWSV(), SvSetSV() with newSVsv()Nicholas Clark2005-01-131-3/+1
* Can pass in a length here without introducing a bug. Might saveNicholas Clark2005-01-091-2/+6
* Pull the am-I-utf8-or-not logic into one place (S_newSV_maybe_utf8)Nicholas Clark2005-01-091-6/+18
* Stage 1 of utf8 support for soft references.Nicholas Clark2005-01-071-1/+1
* D'oh! Spurious aTHX_. Here was I thinking that my test build wasNicholas Clark2005-01-031-1/+1
* Remove compiler warnings.Nicholas Clark2005-01-021-6/+5
* Change 23727 broke code that relied on \ being escaped.Nicholas Clark2005-01-021-3/+16
* Splitting the -n/-p code and concatenating strings generatesNicholas Clark2005-01-021-5/+7
* Concatenate some string constantsNicholas Clark2005-01-011-2/+2
* Use Rafael's sick trick of ASCII NUL as a q'' delimiter to save aNicholas Clark2005-01-011-12/+5
* Probably should be using *pvn rather than *pv forms for speed inNicholas Clark2005-01-011-4/+4
* strEQ/strNE of 1 character strings seems better hand inlined,Nicholas Clark2005-01-011-9/+13
* Remove double checking of acceptable switches on tr/// ops.Nicholas Clark2004-12-031-4/+12
* use (c == '$' || c == '@' || c == '%') instead of strchr("$@%", c)Nicholas Clark2004-12-031-10/+16
* Fix for bug: [perl #32562] __PACKAGE__ symbol has wrong valueRafael Garcia-Suarez2004-11-231-1/+1
* Make "err" a weak keyword;Rafael Garcia-Suarez2004-11-191-0/+10
* Turn regcomp into a list opDave Mitchell2004-10-101-4/+17
* Make the perl interpreter more tolerant of UTF-16-encoded scriptRafael Garcia-Suarez2004-10-081-32/+32
* the improved -DT output of #23325 could print an uninit stack valueDave Mitchell2004-09-281-1/+1
* Perl -DT segfaults when parsing a 'use' statementRafael Garcia-Suarez2004-09-281-1/+4
* improve lexer debugging output (-DT)Dave Mitchell2004-09-191-60/+197
* Turn 2 strcpy()s into memcpy() because we know the length.Nicholas Clark2004-07-191-2/+2
* Fix for: [perl #2738] perl segfautls on inputMarcus Holland-Moritz2004-06-241-2/+6
* BOM-marked and (BOMless) UTF-16 scripts not workingJarkko Hietaniemi2004-05-131-29/+56