| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
to happen right after the inclusion of <inttypes.h>,
from Edward Moy.
p4raw-id: //depot/perl@10716
|
|
|
|
|
| |
(and INT64_MIN) brokenness.
p4raw-id: //depot/perl@10649
|
|
|
| |
p4raw-id: //depot/perl@10643
|
|
|
|
|
| |
extremely experimental, not even prompted for.
p4raw-id: //depot/perl@10569
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0106130959050.24181-100000@mako.covalent.net>
p4raw-id: //depot/perl@10566
|
|
|
|
|
| |
suggested by NI-S.
p4raw-id: //depot/perl@10561
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0106122247380.24181-100000@mako.covalent.net>
p4raw-id: //depot/perl@10559
|
|
|
|
|
|
| |
Subject: Re: ext/ + -Wall
Message-Id: <200106120634.f5C6YVM07246@smtp3.ActiveState.com>
p4raw-id: //depot/perl@10535
|
|
|
|
|
| |
from sv.c statics to util.c and public.
p4raw-id: //depot/perl@10505
|
|
|
| |
p4raw-id: //depot/perl@10485
|
|
|
|
|
| |
but not the prototypes.
p4raw-id: //depot/perl@10444
|
|
|
|
|
| |
Message-ID: <Pine.BSF.4.21.0106042136410.26316-100000@shell8.ba.best.com>
p4raw-id: //depot/perl@10443
|
|
|
|
|
|
| |
probe to cast, not whine; test for %Ld and %Lf before %lld and
%llf because the L is the ANSI way.
p4raw-id: //depot/perl@10434
|
|
|
|
|
| |
often this prototype goes with HAS_SETRESUID_PROTO.
p4raw-id: //depot/perl@10420
|
|
|
| |
p4raw-id: //depot/perl@10416
|
|
|
| |
p4raw-id: //depot/perl@10415
|
|
|
|
|
|
| |
one byte. Also, under locales, prefer the locale-specific
separator over the old boring ".".
p4raw-id: //depot/perl@10414
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
per-cop, not per-op; plus retweak the locale.t to always
list the skipped utf8 locales.
p4raw-link: @10412 on //depot/maint-5.6/perl: 71d0b827413df9e881d1c54d2d968823ed50c75b
p4raw-id: //depot/perl@10413
p4raw-edited: from //depot/maint-5.6/perl@10411 'edit in'
t/pragma/locale.t (@8600..)
p4raw-integrated: from //depot/maint-5.6/perl@10411 'merge in'
lib/locale.pm (@5902..) opcode.h pp.sym pp_proto.h (@8620..)
opcode.pl (@8998..) op.h perl.h (@9288..) pp_sys.c (@9524..)
util.c (@9538..) embed.h (@9584..) op.c (@9950..) pp.c
(@10091..) pp_ctl.c (@10100..)
|
|
|
|
|
| |
Message-Id: <200105311949.UAA02798@crypt.compulink.co.uk>
p4raw-id: //depot/perl@10379
|
|
|
|
|
|
|
|
|
| |
probe for realpath(), for setresuid() and setresgid()
prototypes; use realpath() (try to be paranoid enough),
use the setres[ug]id prototypes because glibc has the functions
but not their prototypes; add -Wall -ansi to gcc ccflags;
regen toc.
p4raw-id: //depot/perl@10372
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Message-ID: <Pine.SOL.4.10.10105241415460.2443-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@10200
|
|
|
| |
p4raw-id: //depot/perl@10198
|
|
|
|
|
| |
Message-ID: <20010524154028.B1988@blackrider.blackstar.co.uk>
p4raw-id: //depot/perl@10197
|
|
|
|
|
| |
Message-Id: <200105191912.UAA23925@gizmo.fdgroup.co.uk>
p4raw-id: //depot/perl@10168
|
|
|
|
|
| |
Message-Id: <02453af6b23e63-gin@mo.msk.ru>
p4raw-id: //depot/perl@10096
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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@10064
|
|
|
| |
p4raw-id: //depot/perl@9967
|
|
|
|
|
| |
Message-Id: <5.0.2.1.0.20010502112909.01f24e28@24.8.96.48>
p4raw-id: //depot/perl@9960
|
|
|
|
|
|
| |
a dummy for PL_numeric_radix); no pressing reason to break
binary compatibility; regen API.
p4raw-id: //depot/perl@9910
|
|
|
| |
p4raw-id: //depot/perl@9894
|
|
|
|
|
| |
Message-ID: <20010423143021.17335.qmail@plover.com>
p4raw-id: //depot/perl@9792
|
|
|
|
|
|
|
| |
Message-ID: <20010422191258.6539.qmail@plover.com>
plus Sarathy's STMT_START + STMT_END suggestion.
p4raw-id: //depot/perl@9787
|
|
|
|
|
|
|
|
| |
ext/Digest/MD5/Makefile.PL and t/lib/md5-align.t.
Introduce probes for struct msghdr, struct cmsghdr,
sendmsg, recvmsg, readv, writev, setitimer, getitimer,
ualarm, usleep, for possible later extension work.
p4raw-id: //depot/perl@9560
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[ 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
|
|
|
| |
p4raw-id: //depot/perlio@9184
|
|
|
| |
p4raw-id: //depot/perlio@9180
|
|
|
|
|
| |
Message-Id: <200103091349.NAA16617@tiree.fdgroup.co.uk>
p4raw-id: //depot/perl@9087
|
|
|
|
|
| |
Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk>
p4raw-id: //depot/perl@9084
|
|
|
|
|
| |
Message-ID: <Pine.OSF.4.10.10103081617390.377472-100000@aspara.forte.com>
p4raw-id: //depot/perl@9082
|
|
|
| |
p4raw-id: //depot/perl@8935
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
[ 8927]
Change method names in Encode implementation classes to something
less confusing (preparing to "go public").
[ 8926]
GCC __atribute__ / printf fix
[ 8925]
Checked in the wrong one ...
[ 8923]
Encode API documentation nd tidy up.
Minor additions to test.
Tweaks sv_utf8_upgrade() to force SvPV, and always SvUTF8_on and return length.
Adds STRLEN to standard typemap.
p4raw-link: @8927 on //depot/perlio: 50d2698546d7dba5ed48b29bf1c13887b041a4ba
p4raw-link: @8926 on //depot/perlio: c745e42cb33cb9fcfc4d47fe732cfa4725aa5d07
p4raw-link: @8925 on //depot/perlio: 2a936312a7ab627c98624c1ea83115246309b3d7
p4raw-link: @8923 on //depot/perlio: 4411f3b60960504e67715e05eb0ed3192bfff8fc
p4raw-id: //depot/perl@8934
|
| |
| |
| | |
p4raw-id: //depot/perlio@8926
|
|/
|
|
|
| |
Missing from #8930.
p4raw-id: //depot/perl@8932
|
|
|
|
|
| |
Message-ID: <001801c09cdc$2faba490$2a7b55c2@vad>
p4raw-id: //depot/perl@8908
|
|
|
| |
p4raw-id: //depot/perl@8803
|
|
|
| |
p4raw-id: //depot/perl@8778
|
|
|
|
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0102120919040.26437-100000@mako.covalent.net>
plus the suggestion by Nick Ing-Simmons to name the macro
as PERL_MG_UFUNC to avoid namespace pollution, plus add
the advice by Doug for XS writers to perl.h
p4raw-id: //depot/perl@8774
|