| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
p4raw-id: //depot/perl@14818
|
|
|
| |
p4raw-id: //depot/perl@14483
|
|
|
|
|
|
|
|
|
|
|
| |
Date: Fri, 11 Jan 2002 03:35:51 -0500
Message-ID: <20020111083551.GC30666@blackrider>
Subject: [PATCH] Pod::InputObjects warnings & is() undef/'' fix
From: Michael G Schwern <schwern@pobox.com>
Date: Fri, 11 Jan 2002 03:37:44 -0500
Message-ID: <20020111083744.GD30666@blackrider>
p4raw-id: //depot/perl@14179
|
|
|
| |
p4raw-id: //depot/perl@13828
|
|
|
|
|
| |
Message-ID: <20011220231726.23878.qmail@onion.perl.org>
p4raw-id: //depot/perl@13827
|
|
|
|
|
| |
Message-ID: <Pine.SOL.4.10.10111201240270.15132-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@13134
|
|
|
|
|
| |
Message-ID: <Pine.SOL.4.10.10111201106010.15104-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@13133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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..)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
more tweaks to change#12626
* move the boilerplate code over to perl.h and make DynaLoader
use it
* make re, Opcode, File::Glob and B threadsafe
* re.xs needed s/deinstall/uninstall/ (guess nobody uses
C<no re;> anywhere)
include XS_VERSION in MY_CXT_KEY (tweak for change#12652)
File::Glob required a bit more work in bleadperl
because of ExtUtils::Constant (see the Makefile.PL change)
p4raw-link: @12652 on //depot/maint-5.6/perl: 3bc8871b91a24662eada2114d9a016153718b1c4
p4raw-link: @12626 on //depot/maint-5.6/perl: 512dcce54ea4db665708f91609bdd0a6126d1acd
p4raw-id: //depot/perl@12654
p4raw-integrated: from //depot/maint-5.6/perl@12650 'edit in'
ext/B/B.xs ext/DynaLoader/dlutils.c (@12652..) 'merge in'
perl.h (@12597..) ext/File/Glob/Glob.xs ext/Opcode/Opcode.xs
ext/re/re.xs (@12652..)
|
|
|
|
|
| |
the modules found using a script written by Larry Schatzer Jr.
p4raw-id: //depot/perl@11016
|
|
|
|
|
| |
Message-Id: <5.1.0.14.0.20010613131907.01bbc210@mail.mac.com>
p4raw-id: //depot/perl@10575
|
|
|
|
|
| |
Message-Id: <a05101002b74ca0013cf5@[192.168.56.160]>
p4raw-id: //depot/perl@10562
|
|
|
|
|
| |
Message-ID: <lrae3jsupe.fsf@caliper.ActiveState.com>
p4raw-id: //depot/perl@10477
|
|
|
| |
p4raw-id: //depot/perl@10427
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the 'physical vs logical' range scheme:
\xAA-\xCC is a native physical range, you want that range of
codepoints in your native encoding. In EBCDIC the codepoints
in the gaps (between i-j and r-s) should be included.
\x{AA}-\x{CC} is a physical Unicode range, you want that range of
codepoints in Unicode.
a-z is a logical range, you want that range of 'logical' codepoints
in your native encoding. In EBCDIC the codepoints in the gaps
(between i-j and r-s) should not be included.
Mixed cases (a-\xAA, etc) should either be errors, or maybe
the 'logical' endpoints should be converted to native/Unicode
codepoints, and the range handled as a physical range.
'Logical endpoints' are to be recognized only in the A-Z, a-z,
and 0-9 ranges. Probably a warning should be given for mixed
cases like A-z or a-9 (since such expressions are encoding
dependent), with a recommendation to use physical ranges.
p4raw-id: //depot/perl@10085
|
|
|
| |
p4raw-id: //depot/perl@9846
|
|
|
|
|
| |
Message-Id: <20010329120132.7C3B.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@9457
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[ 9400]
More EBCDIC tweaks:
- one more swash issue &~(0xA0-1) did not do the right thing,
for UTF-EBCDIC where &~(0x80-1) does for UTF-8.
- add "use re 'asciirange'" to make [!-~] etc. work
use it in MIME::QuotedPrint and t/op/regexp.t and t/op/pat.t
- Choose a key for t/op/each.t test which gets encoded.
- Skip utf8decode if this is UTF-EBCDIC.
p4raw-link: @9400 on //depot/perlio: daf0f78e031c718c75590ef9ef573756f805776e
p4raw-id: //depot/perl@9407
|
|
|
|
|
|
|
| |
AIX C compiler 5.0.1.0: skip the optimization for regcomp.c
(and ext/re/re_comp.c). The MakeMaker dark magic courtesy
of Andreas König.
p4raw-id: //depot/perl@9124
|
|
|
|
|
| |
Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk>
p4raw-id: //depot/perl@9084
|
|
|
| |
p4raw-id: //depot/perl@7984
|
|
|
| |
p4raw-id: //depot/perlio@7754
|
|
|
|
|
|
|
| |
Fix a couple of gross issues
- double-include of ../deb.o in re.dll
- win32sck.c needs PerlIO and FILE
p4raw-id: //depot/perlio@7752
|
|
|
|
|
|
| |
Subject: [PATCH perl@7638] Get PerlIO building on Win32
Message-ID: <20001113230808.18659.qmail@web6305.mail.yahoo.com>
p4raw-id: //depot/perl@7678
|
|
|
| |
p4raw-id: //depot/perl@7514
|
|
|
|
|
| |
Message-ID: <Pine.OSF.4.10.10010301634500.67363-100000@aspara.forte.com>
p4raw-id: //depot/perl@7495
|
|
|
|
|
|
|
|
| |
is to include the deb.o explicitly to the re extension build.
Subject: Re: introduce missing .Perl_deb symbol to aix build (Questions)
Message-ID: <Pine.OSF.4.10.10010241252180.127055-100000@aspara.forte.com>
p4raw-id: //depot/perl@7434
|
|
|
| |
p4raw-id: //depot/perl@6784
|
|
|
|
|
|
|
|
|
| |
(change#4043 fixed the need for that)
Message-Id: <199911160650.BAA18874@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_62] XSLoader.pm
p4raw-link: @4043 on //depot/cfgperl: 09bef84370e90d727656ea11ba5ee8be80e361d3
p4raw-id: //depot/perl@4623
|
|
|
| |
p4raw-id: //depot/perl@3669
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
builds; passing the implicit context is unified among the three
flavors; PERL_IMPLICIT_CONTEXT is auto-enabled under all three
flavors (see the top of perl.h) for testing; all varargs functions
foo() have a va_list-taking variant vfoo() for generating the
context-free versions; the PERL_OBJECT build should now be
hyper-compatible with CPAN extensions (C++ is totally out of
the picture)
result has only been tested on Windows
TODO: write docs on the THX rationale and idiomatic usage of
the Perl API
p4raw-id: //depot/perl@3667
|
|
|
|
|
|
|
| |
improved RE API
Message-Id: <199906092214.SAA14126@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_57] REx engine rehash
p4raw-id: //depot/perl@3606
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
enabled via -DPERL_IMPLICIT_CONTEXT (all changes are noops
without that enabled):
- USE_THREADS now enables PERL_IMPLICIT_CONTEXT, so dTHR
is a noop; tests pass on Solaris; should be faster now!
- MULTIPLICITY has been tested with and without
PERL_IMPLICIT_CONTEXT on Solaris
- improved function database now merged with embed.pl
- everything except the varargs functions have foo(a,b,c) macros
to provide compatibility
- varargs functions default to compatibility variants that
get the context pointer using dTHX
- there should be almost no source compatibility issues as a
result of all this
- dl_foo.xs changes other than dl_dlopen.xs untested
- still needs documentation, fixups for win32 etc
Next step: migrate most non-mutex variables from perlvars.h
to intrpvar.h
p4raw-id: //depot/perl@3524
|
|
|
| |
p4raw-id: //depot/perl@3518
|
|
|
|
|
|
| |
Message-id: <01J8YF0EOWLU001E7S@mail.newman.upenn.edu>
Subject: [PATCH 5.005_56] Miscellaneous small fixes
p4raw-id: //depot/perl@3152
|
|
|
|
|
|
|
| |
To: perlbug@perl.com
Cc: hansmu@xs4all.nl
Message-ID: <MLIST_9901111947.AA22109@icgned.icgroup.nl>
p4raw-id: //depot/cfgperl@2603
|
|
|
|
|
| |
(MAN3PODS cannot be set to ' '; stray stricture violation)
p4raw-id: //depot/perl@1967
|
|
|
|
|
| |
p4raw-link: @1703 on //depot/maint-5.005/perl: af819cba4f44bf2074ec4808e403dedf8c3ce2b2
p4raw-id: //depot/perl@1825
|
|
|
|
|
|
| |
Message-Id: <199807182134.RAA20644@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_72] Better -Mre=colordb
p4raw-id: //depot/perl@1596
|
|
|
|
|
|
| |
Message-Id: <199807152102.RAA19952@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_72] Enable/document colors in re.pm
p4raw-id: //depot/perl@1593
|
|\
| |
| | |
p4raw-id: //depot/ansiperl@1566
|
| |
| |
| |
| |
| |
| | |
Message-Id: <E0ywPvu-0003V7-00@ursa.cus.cam.ac.uk>
Subject: Re: [PATCH 5.004_74]Don't use tainted REs in Basename.pm when building perl
p4raw-id: //depot/perl@1550
|
|/
|
|
|
| |
Builds and passes all tests at one limit i.e. -DPERL_GLOBAL_STRUCT
p4raw-id: //depot/ansiperl@1532
|
|
|
| |
p4raw-id: //depot/perl@1513
|
|
|
|
|
|
| |
Message-Id: <3.0.5.32.19980713115227.00a73970@ous.edu>
Subject: [PATCH 5.004_73]Get re module working on VMS
p4raw-id: //depot/perl@1486
|
|
|
|
|
|
| |
Message-Id: <199807132107.AAA20603@alpha.hut.fi>
Subject: MPE/iX patches for _73
p4raw-id: //depot/perl@1478
|
|
|
|
|
|
| |
Message-Id: <Pine.SUN.3.96.980713164922.28314B-100000@newton.phys>
Subject: Re: _70 and Devel::RE
p4raw-id: //depot/perl@1477
|
|
|
| |
p4raw-id: //depot/perl@1453
|
|
|
|
|
|
| |
and runs regexes in 1000s of threads without crashing; also fixed
statcache not being thread-local
p4raw-id: //depot/perl@1448
|
|
|
|
|
|
| |
Message-Id: <199807092247.SAA06314@monk.mps.ohio-state.edu>
Subject: Re: [PATCH 5.004_71] Secure RE update
p4raw-id: //depot/perl@1444
|