1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
|
Please note: This file provides a summary of significant changes
between versions and sub-versions of Perl, not necessarily a complete
list of each modification. If you'd like more detailed information,
please consult the comments in the patches on which the relevant
release of Perl is based. (Patches can be found on any CPAN
site, in the .../src/5.0 directory for full version releases,
or in the .../src/5/0/unsupported directory for sub-version
releases.)
---------------
CAST AND CREW
---------------
To give due honor to those who have made Perl what is is today,
here are some of the more common names in the Changes file, and their
current addresses (as of July 1998):
Gisle Aas <gisle@aas.no>
Abigail <abigail@fnx.com>
Kenneth Albanowski <kjahds@kjahds.com>
Russ Allbery <rra@stanford.edu>
Graham Barr <gbarr@ti.com>
Spider Boardman <spider@orb.nashua.nh.us>
Tom Christiansen <tchrist@perl.com>
Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
M. J. T. Guy <mjtg@cus.cam.ac.uk>
Jarkko Hietaniemi <jhi@iki.fi>
Nick Ing-Simmons <nik@tiuk.ti.com>
Andreas Koenig <a.koenig@mind.de>
Doug MacEachern <dougm@opengroup.org>
Paul Marquess <pmarquess@bfsec.bt.co.uk>
Stephen McCamant <alias@mcs.com>
Laszlo Molnar <molnarl@cdata.tvnet.hu>
Hans Mulder <hansmu@xs4all.nl>
Matthias Neeracher <neeri@iis.ee.ethz.ch>
Jeff Okamoto <okamoto@hpcc123.corp.hp.com>
Ulrich Pfeifer <pfeifer@charly.informatik.uni-dortmund.de>
Tom Phoenix <rootbeer@teleport.com>
Joshua Pritikin <joshua.pritikin@db.com>
Norbert Pueschel <pueschel@imsdd.meb.uni-bonn.de>
Dean Roehrich <roehrich@cray.com>
Hugo van der Sanden <hv@crypt0.demon.co.uk>
Roderick Schertler <roderick@argon.org>
Kurt D. Starsinic <kstar@isinet.com>
Dan Sugalski <sugalskd@osshe.edu>
Larry W. Virden <lvirden@cas.org>
Ilya Zakharevich <ilya@math.ohio-state.edu>
And the Keepers of the Patch Pumpkin:
Charles Bailey <bailey@newman.upenn.edu>
Malcolm Beattie <mbeattie@sable.ox.ac.uk>
Tim Bunce <Tim.Bunce@ig.co.uk>
Andy Dougherty <doughera@lafcol.lafayette.edu>
Gurusamy Sarathy <gsar@engin.umich.edu>
Chip Salzenberg <chip@perl.com>
And, of course, the Author of Perl:
Larry Wall <larry@wall.org>
NOTE: Each change entry shows the change number; who checked it into the
repository; when; description of the change; which branch the change
happened in; and the affected files. The file lists have a short symbolic
indicator:
! modified
+ added
- deleted
+> branched (from elsewhere)
!> merged changes (from elsewhere)
----------------
Version 5.005_52 Development release working toward 5.006
----------------
____________________________________________________________________________
[ 1882] By: gsar on 1998/09/25 02:04:43
Log: missing file in last submit
Branch: perl
! proto.h
____________________________________________________________________________
[ 1881] By: gsar on 1998/09/25 01:56:54
Log: serial access to PL_x[inpr]v_root for USE_THREADS
Branch: perl
! sv.c
____________________________________________________________________________
[ 1880] By: gsar on 1998/09/25 01:19:38
Log: lock sv_mutex in new_he() and del_he() for USE_THREADS
From: Drago Goricanec <drago@king.otsd.ts.fujitsu.co.jp>
Date: Thu, 24 Sep 1998 22:01:09 +0900
Message-Id: <19980924220109J.drago@otsd.ts.fujitsu.co.jp>
Subject: [PATCH 5.005_51] Re: Perl 5.005_51 not yet multi Thread safe
Branch: perl
! hv.c proto.h
____________________________________________________________________________
[ 1879] By: gsar on 1998/09/25 00:20:07
Log: tweaks to enable PERL_OBJECT to build & test on win32
Branch: perl
! Changes doop.c mg.c objpp.h proto.h regexec.c util.c
! win32/GenCAPI.pl
____________________________________________________________________________
[ 1878] By: gsar on 1998/09/25 00:13:36
Log: fix change#1861, which breaks default boot_xxx symbol generation
Branch: perl
! lib/ExtUtils/Mksymlists.pm
____________________________________________________________________________
[ 1877] By: gsar on 1998/09/24 10:29:54
Log: two tweaks for clean build and test on Solaris
Branch: perl
! op.c t/op/subst.t
____________________________________________________________________________
[ 1876] By: gsar on 1998/09/24 09:04:43
Log: From: Colin Kuskie <ckuskie@cadence.com>
Date: Wed, 26 Aug 1998 14:53:01 -0700 (PDT)
Message-ID: <Pine.GSO.3.96.980826143507.3258K-100000@pdxmail.cadence.com>
Subject: [PATCH 5.005_51] perlform.pod
Branch: perl
! pod/perlform.pod
____________________________________________________________________________
[ 1875] By: gsar on 1998/09/24 08:47:47
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 25 Aug 1998 15:35:58 -0400 (EDT)
Message-Id: <199808251935.PAA11384@monk.mps.ohio-state.edu>
Subject: Re: problem with (?p{}) [PATCH 5.005_5*]
Branch: perl
! regexec.c
____________________________________________________________________________
[ 1874] By: gsar on 1998/09/24 08:44:55
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 25 Aug 1998 14:56:06 -0400 (EDT)
Message-Id: <199808251856.OAA10825@monk.mps.ohio-state.edu>
Subject: Re: your Regexp.patch dated 21.8 [PATCH]
Branch: perl
! toke.c
____________________________________________________________________________
[ 1873] By: gsar on 1998/09/24 08:39:41
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 25 Aug 1998 04:29:49 -0400 (EDT)
Message-Id: <199808250829.EAA02470@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_*] Extraneous warning for (?()A|B)
Branch: perl
! Changes regcomp.c
____________________________________________________________________________
[ 1872] By: gsar on 1998/09/24 08:37:00
Log: From: Krishna Sethuraman <krishpl@shamu.engr.sgi.com>
Date: Sun, 23 Aug 1998 23:18:38 PDT
Message-Id: <199808240618.XAA05329@shamu.engr.sgi.com>
Subject: new irix_6.sh hints file
Branch: perl
! hints/irix_6.sh
____________________________________________________________________________
[ 1871] By: gsar on 1998/09/24 07:26:37
Log: correct FSF address in various places
Branch: perl
! Copying README ext/B/README lib/Getopt/Long.pm
____________________________________________________________________________
[ 1870] By: gsar on 1998/09/24 07:11:56
Log: From: Dan Sugalski <sugalskd@osshe.edu>
Date: Fri, 14 Aug 1998 09:20:16 PDT
Message-Id: <3.0.5.32.19980814092016.00b37dc0@ous.edu>
Subject: [PATCH 5.005_02] (and _5x I expect) VMS config procedure patch
Branch: perl
! configure.com
____________________________________________________________________________
[ 1869] By: gsar on 1998/09/24 06:55:59
Log: use STRICT_ALIGNMENT on IRIX to allow usemymalloc=y again
From: Scott Henry <scotth@sgi.com>
Date: 13 Aug 1998 09:52:15 PDT
Message-Id: <yd8pve46czk.fsf@hoshi.engr.sgi.com>
Subject: [PATCH] Irix USE_LONG_LONG/malloc.c incompatibility (was...)
Branch: perl
! hints/irix_6.sh
____________________________________________________________________________
[ 1868] By: gsar on 1998/09/24 06:51:23
Log: From: Nathan Torkington <gnat@frii.com>
Date: Thu, 13 Aug 1998 10:59:48 MDT
Message-Id: <199808131659.KAA06179@prometheus.frii.com>
Subject: [PATCH] 5.005_02 perlfunc.pod, improve umask entry
Branch: perl
! pod/perlfunc.pod
____________________________________________________________________________
[ 1867] By: gsar on 1998/09/24 06:45:13
Log: make C<goto &sub> AUTOLOAD-aware (autouse now works for modules
that are autoloaded)
Branch: perl
! pp_ctl.c
____________________________________________________________________________
[ 1866] By: gsar on 1998/09/24 05:21:19
Log: grandfather deprecated "$$<digit>" no more
Branch: perl
! pod/perldiag.pod toke.c
____________________________________________________________________________
[ 1865] By: gsar on 1998/09/24 04:52:48
Log: tweak PERL_HASH() to h=h+(h>>5) in order to improve distribution of
low bits (suggested by Ilya Zakharevich)
Branch: perl
! hv.h
____________________________________________________________________________
[ 1864] By: gsar on 1998/09/24 04:29:14
Log: move yyglobal decls from perly.c to perlvars.h, regen headers, tweak
perly_c.diff
Branch: perl
! embed.h embedvar.h global.sym perlvars.h perly.c perly.h
! perly_c.diff toke.c
____________________________________________________________________________
[ 1863] By: gsar on 1998/09/24 03:36:30
Log: provide locked access to string table for USE_THREADS
Branch: perl
! embedvar.h hv.c intrpvar.h objXSUB.h perl.c thread.h
____________________________________________________________________________
[ 1862] By: gsar on 1998/09/24 03:30:32
Log: remove bogus warn()
Branch: perl
! embed.pl
____________________________________________________________________________
[ 1861] By: gsar on 1998/09/24 02:58:51
Log: applied suggested patch, adapted for all platforms
From: jan.dubois@ibm.net (Jan Dubois)
Date: Sun, 20 Sep 1998 12:56:38 +0200
Message-ID: <3604de0c.12319885@smtp1.ibm.net>
Subject: [New PATCH 5.005_02] Support Mksymlists FUNCLIST argument in MakeMaker
Branch: perl
! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
! lib/ExtUtils/MakeMaker.pm
____________________________________________________________________________
[ 1860] By: gsar on 1998/09/24 02:16:14
Log: upgrade to CPAN-1.40
Branch: perl
! Changes lib/CPAN.pm lib/CPAN/FirstTime.pm
____________________________________________________________________________
[ 1859] By: gsar on 1998/09/24 02:08:59
Log: use $ENV{MAKEMAKEROPT} to set default command line args
Branch: perl
! lib/ExtUtils/MakeMaker.pm
____________________________________________________________________________
[ 1857] By: gsar on 1998/09/23 10:58:36
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 22 Sep 1998 17:30:16 -0400 (EDT)
Message-Id: <199809222130.RAA17034@monk.mps.ohio-state.edu>
Subject: More verbose Test::Harness [PATCH]
Branch: perl
! lib/Test/Harness.pm
____________________________________________________________________________
[ 1856] By: gsar on 1998/09/23 10:56:24
Log: update hints for OPENSTEP 4.2 on i386
From: Gerben Wierda <Gerben_Wierda@RnA.nl>
Date: Sun, 20 Sep 1998 01:03:18 +0200
Message-Id: <9809192303.AA29190@Spike>
Subject: Perl 5.005_02 compilation problems
Branch: perl
! hints/next_4.sh
____________________________________________________________________________
[ 1855] By: gsar on 1998/09/23 10:52:27
Log: reset errno after C<require> search (as suggested by Larry)
Branch: perl
! pp_ctl.c
____________________________________________________________________________
[ 1854] By: gsar on 1998/09/23 10:50:26
Log: misc pod tweaks
Branch: perl
! pod/perldelta.pod pod/perldiag.pod pod/perlport.pod
____________________________________________________________________________
[ 1853] By: gsar on 1998/09/23 10:46:06
Log: make Pod/Html.pm handle the --title option properly (as suggested
by gml4410@ggr.co.uk)
Branch: perl
! lib/Pod/Html.pm
____________________________________________________________________________
[ 1852] By: gsar on 1998/09/23 10:41:39
Log: SSNEW() API for allocating memory on the savestack
From: Albert Dvornik <bert@genscan.com>
Date: 17 Sep 1998 19:23:07 -0400
Message-Id: <tqemtae338.fsf@puma.genscan.com>
Subject: [PATCH 5.005_51] (was: why SAVEDESTRUCTOR()...)
Branch: perl
! Changes Changes5.005 embed.h global.sym mg.c objXSUB.h objpp.h
! perl.h proto.h scope.c scope.h t/io/tell.t
____________________________________________________________________________
[ 1851] By: gsar on 1998/09/23 10:37:05
Log: From: Jochen Wiedmann <joe@ispsoft.de>
Date: Thu, 17 Sep 1998 17:16:06 +0200
Message-ID: <360127B6.E44564A@ispsoft.de>
Subject: [PATCH] ExtUtils::MakeMaker::prompt cannot return 0
Branch: perl
! lib/ExtUtils/MakeMaker.pm
____________________________________________________________________________
[ 1850] By: gsar on 1998/09/23 10:33:05
Log: From: andreas.koenig@kulturbox.de (Andreas J. Koenig)
Date: 15 Sep 1998 01:32:31 +0200
Message-ID: <sfchfya46eo.fsf@dubravka.in-berlin.de>
Subject: Re: [PATCH] MakeMaker "test" target doesn't depend on "all"
Branch: perl
! lib/ExtUtils/MM_Unix.pm
____________________________________________________________________________
[ 1849] By: gsar on 1998/09/23 10:29:04
Log: From: Charles Bailey <BAILEY@newman.upenn.edu>
Date: Sat, 12 Sep 1998 19:25:32 -0400 (EDT)
Message-id: <01J1QBJUAY1I002KOW@cor.newman.upenn.edu>
Subject: Re: extralibs.ld problem in MM_VMS.pm
Branch: perl
! lib/ExtUtils/MM_VMS.pm
____________________________________________________________________________
[ 1848] By: gsar on 1998/09/23 10:25:24
Log: From: Roderick Schertler <roderick@argon.org>
Date: 11 Sep 1998 16:19:21 -0400
Message-ID: <pzyarqpfli.fsf@eeyore.ibcinc.com>
Subject: Re: Open2 and memory leaks
Branch: perl
! lib/IPC/Open3.pm
____________________________________________________________________________
[ 1847] By: gsar on 1998/09/23 10:18:31
Log: From: Roderick Schertler <roderick@argon.org>
Date: Wed, 09 Sep 1998 23:52:48 -0400
Message-ID: <20567.905399568@eeyore.ibcinc.com>
Subject: seed srand from /dev/urandom when possible
Branch: perl
! pod/perlfunc.pod pp.c
____________________________________________________________________________
[ 1846] By: gsar on 1998/09/23 10:12:22
Log: From: Roderick Schertler <roderick@argon.org>
Date: Thu, 10 Sep 1998 00:32:17 -0400
Message-ID: <21142.905401937@eeyore.ibcinc.com>
Subject: doc update for crypt()'s salt
Branch: perl
! pod/perlfunc.pod
____________________________________________________________________________
[ 1845] By: gsar on 1998/09/23 10:09:23
Log: fix h2ph handling of C<#error "foo">
From: SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>
Date: Thu, 10 Sep 1998 09:59:33 +0900
Message-Id: <19980910095933N.ksakai@netwk.ntt-at.co.jp>
Subject: [5.005_02] h2ph problem
Branch: perl
! utils/h2ph.PL
____________________________________________________________________________
[ 1844] By: gsar on 1998/09/23 10:06:13
Log: plug strictly private function leaks in API listing
Branch: perl
! pod/perlguts.pod
____________________________________________________________________________
[ 1843] By: gsar on 1998/09/23 10:02:57
Log: hide symbol for static build
From: Dominic Dunlop <domo@vo.lu>
Date: Tue, 8 Sep 1998 21:40:46 +0000
Message-Id: <v03110700b21b52db318d@[212.24.192.111]>
Subject: Not OK: perl 5.00551 on powerpc-machten 4.1.1 [PATCH]
Branch: perl
! regcomp.c
____________________________________________________________________________
[ 1842] By: gsar on 1998/09/23 09:52:46
Log: define PUT_svindex(), PUT_opindex()
Branch: perl
! ext/B/B/Assembler.pm
____________________________________________________________________________
[ 1841] By: gsar on 1998/09/23 09:44:25
Log: From: Dominic Dunlop <domo@vo.lu>
Date: Tue, 8 Sep 1998 15:34:53 +0000
Message-Id: <v03110701b21afbdc7cfb@[212.24.192.76]>
Subject: [PATCH 5.005_51] Eliminate pragma/warn-regexec test dependence on REG_INFTY value
Branch: perl
! t/pragma/warn/regexec
____________________________________________________________________________
[ 1840] By: gsar on 1998/09/23 09:42:17
Log: pl2bat tweak from Tye McQueen <tye@metronet.com>
Branch: perl
! win32/bin/pl2bat.pl
____________________________________________________________________________
[ 1839] By: gsar on 1998/09/23 09:38:18
Log: From: Drago Goricanec <drago@raptor.otsd.ts.fujitsu.co.jp>
Date: Mon, 7 Sep 1998 17:36:09 +0900
Message-Id: <199809070836.RAA14631@raptor.otsd.ts.fujitsu.co.jp>
Subject: Thread::cond_wait bug in 5.005.51 causes deadlock
Branch: perl
! ext/Thread/Thread.xs
____________________________________________________________________________
[ 1838] By: gsar on 1998/09/23 09:21:11
Log: From: "Green, Paul" <pgreen@seussnt.stratus.com>
Date: Thu, 10 Sep 1998 00:02:07 -0400
Message-ID: <646CD0392810D211B04A00A024BF26FB1022EB@terminator.sw.stratus.com>
Subject: RE: [PATCH] 5.005_02 and 5.005_51: Stratus VOS port
Branch: perl
+ README.vos vos/Changes vos/build.cm vos/compile_perl.cm
+ vos/config.h vos/config_h.SH_orig vos/perl.bind
+ vos/test_vos_dummies.c vos/vos_dummies.c vos/vosish.h
! MANIFEST perl.c perl.h pod/perlport.pod
____________________________________________________________________________
[ 1837] By: gsar on 1998/09/23 08:45:58
Log: (via private mail)
From: Charles Bailey <BAILEY@newman.upenn.edu>
Date: Sat, 05 Sep 1998 01:23:58 -0400 (EDT)
Message-id: <01J1FH7R43NS002F14@cor.newman.upenn.edu>
Subject: [Patch 5.005_02] Miscellaneous VMS cleanup
Branch: perl
! Changes Changes5.005 README.vms ext/DynaLoader/dl_vms.xs
! lib/Cwd.pm lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
! lib/ExtUtils/Mksymlists.pm lib/File/Copy.pm lib/File/Path.pm
! lib/File/Spec.pm pod/perldiag.pod pod/perlfaq1.pod
! pod/perlport.pod pod/perlrun.pod vms/ext/DCLsym/0README.txt
! vms/ext/DCLsym/DCLsym.pm vms/ext/DCLsym/DCLsym.xs
! vms/ext/Filespec.pm vms/ext/XSSymSet.pm vms/gen_shrfls.pl
! vms/mms2make.pl vms/perly_c.vms vms/sockadapt.c
! vms/sockadapt.h vms/test.com vms/vms.c vms/vms_yfix.pl
! vms/writemain.pl
____________________________________________________________________________
[ 1836] By: gsar on 1998/09/23 08:17:42
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Sat, 5 Sep 1998 00:14:51 -0400 (EDT)
Message-Id: <199809050414.AAA19801@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_*] OS/2 spawning typos
Branch: perl
! os2/os2.c
____________________________________________________________________________
[ 1835] By: gsar on 1998/09/23 08:09:55
Log: warn on C<my($foo,$foo)>
Branch: perl
! op.c pod/perldiag.pod
____________________________________________________________________________
[ 1834] By: gsar on 1998/09/23 07:35:56
Log: From: pvhp@forte.com (Peter Prymmer)
Date: Fri, 4 Sep 98 13:27:41 PDT
Message-Id: <9809042027.AA04463@forte.com>
Subject: [PATCH 5.005_02 && 5.005_51] general updates to README.vms
Branch: perl
! README.vms
____________________________________________________________________________
[ 1833] By: gsar on 1998/09/23 07:27:34
Log: From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
Date: Wed, 2 Sep 1998 10:06:49 -0700 (PDT)
Message-Id: <199809021706.KAA26349@xfiles.intercon.hp.com>
Subject: PATCH: 5.005_02 hint/hpux.sh
Branch: perl
! hints/hpux.sh
____________________________________________________________________________
[ 1832] By: gsar on 1998/09/23 07:22:40
Log: fix (some) installhtml bugs
From: Larry Parmelee <parmelee@CS.Cornell.EDU>
Date: Tue, 1 Sep 1998 12:43:40 -0400 (EDT)
Message-Id: <199809011643.MAA05702@sundown.cs.cornell.edu>
Subject: installhtml script needs work
Branch: perl
! installhtml
____________________________________________________________________________
[ 1831] By: gsar on 1998/09/23 07:19:30
Log: document 'U' magic with examples
From: Alan Burlison <Alan.Burlison@UK.Sun.com>
Date: Tue, 1 Sep 1998 15:54:06 +0100 (BST)
Message-Id: <199809011455.PAA00631@sale-wts>
Subject: Re: Looking for some XS MAGIC examples...
Branch: perl
! pod/perlguts.pod
____________________________________________________________________________
[ 1830] By: gsar on 1998/09/23 07:16:43
Log: From: pvhp@forte.com (Peter Prymmer)
Date: Mon, 31 Aug 98 17:13:49 PDT
Message-Id: <9809010013.AA06737@forte.com>
Subject: [PATCH: 5.005_02; yet another system configuration tip for OS/390]
Branch: perl
! README.os390
____________________________________________________________________________
[ 1829] By: gsar on 1998/09/23 07:15:08
Log: fix problematic typecast in filter_del()
From: Mark P Lutz <tecmpl1@triton.ca.boeing.com>
Date: Mon, 31 Aug 1998 21:13:11 GMT
Message-Id: <199808312113.VAA53356@triton.ca.boeing.com>
Subject: perl5.005_02 does not build on Cray T90
Branch: perl
! toke.c
____________________________________________________________________________
[ 1828] By: gsar on 1998/09/23 07:11:34
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Mon, 31 Aug 1998 14:52:10 -0400 (EDT)
Message-Id: <199808311852.OAA24676@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_5*] (?>) broken in RE
Branch: perl
! regexec.c t/op/re_tests
____________________________________________________________________________
[ 1827] By: gsar on 1998/09/23 07:09:50
Log: U/WIN testsuite patches from Joe Buehler <jhpb@hekimian.com>
Branch: perl
! t/op/grent.t t/op/groups.t
____________________________________________________________________________
[ 1826] By: gsar on 1998/09/23 07:03:16
Log: From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Wed, 12 Aug 1998 22:41:37 +0300 (EET DST)
Message-Id: <199808121941.WAA06263@alpha.hut.fi>
Subject: [PATCH] 5.004_50 or 5.005_02: get rid of interp.sym because not even AIX needs it
Branch: perl
- interp.sym
! MANIFEST Makefile.SH embed.pl perl_exp.SH
____________________________________________________________________________
[ 1825] By: gsar on 1998/09/23 06:56:40
Log: re-introduce change#1703
Branch: perl
! ext/re/re.pm pod/perlre.pod regcomp.c regexec.c thrdvar.h
____________________________________________________________________________
[ 1824] By: gsar on 1998/09/23 06:44:19
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Sat, 29 Aug 1998 17:38:30 -0400 (EDT)
Message-Id: <199808292138.RAA18359@monk.mps.ohio-state.edu>
Subject: [PATCH 5.005_*] Protect debugger from nonlocal exits
Branch: perl
! lib/perl5db.pl
____________________________________________________________________________
[ 1823] By: gsar on 1998/09/23 06:41:34
Log: From: Joe Buehler <jhpb@hekimian.com>
Date: 29 Aug 1998 17:13:28 -0400
Message-ID: <yd37lzro5jb.fsf@pandora.hekimian.com>
Subject: patches for perl 5.005_51 under U/WIN
Branch: perl
+ hints/uwin.sh
! Configure installman lib/ExtUtils/MM_Unix.pm makedepend.SH
! t/lib/posix.t
____________________________________________________________________________
[ 1822] By: gsar on 1998/09/23 06:36:59
Log: add missing C<no utf8;> tweak from Larry
Branch: perl
! t/op/subst.t
____________________________________________________________________________
[ 1821] By: gsar on 1998/09/23 06:27:51
Log: s/runops/CALLRUNOPS/
Branch: perl
! cc_runtime.h
____________________________________________________________________________
[ 1820] By: gsar on 1998/09/23 06:24:49
Log: rename t/pragma/warn-* to t/pragma/warn/*, be 8.3-friendly
Branch: perl
+> t/pragma/warn/1global t/pragma/warn/2use t/pragma/warn/3both
+> t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/doio
+> t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op
+> t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp
+> t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys
+> t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv
+> t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal
+> t/pragma/warn/util
- t/pragma/warn-1global t/pragma/warn-2use t/pragma/warn-3both
- t/pragma/warn-4lint t/pragma/warn-5nolint t/pragma/warn-doio
- t/pragma/warn-gv t/pragma/warn-mg t/pragma/warn-op
- t/pragma/warn-perl t/pragma/warn-perly t/pragma/warn-pp
- t/pragma/warn-pp_ctl t/pragma/warn-pp_hot t/pragma/warn-pp_sys
- t/pragma/warn-regcomp t/pragma/warn-regexec t/pragma/warn-sv
- t/pragma/warn-taint t/pragma/warn-toke t/pragma/warn-universal
- t/pragma/warn-util
! MANIFEST t/pragma/warning.t
____________________________________________________________________________
[ 1819] By: gsar on 1998/09/23 06:08:46
Log: make \(%foo) return refs to values (not copies of values)
From: Stephen McCamant <smccam@uclink4.berkeley.edu>
Date: Fri, 28 Aug 1998 20:46:10 -0700 (PDT)
Message-ID: <13799.30680.47765.352558@fre-76-120.reshall.berkeley.edu>
--
From: Roderick Schertler <roderick@argon.org>
Date: Sat, 29 Aug 1998 00:58:33 -0400
Message-ID: <29894.904366713@eeyore.ibcinc.com>
Subject: Re: \(%x) problems
Branch: perl
! doop.c pod/perlref.pod
____________________________________________________________________________
[ 1818] By: gsar on 1998/09/23 06:05:08
Log: make h2xs generate ANSI prototypes
Branch: perl
! utils/h2xs.PL
____________________________________________________________________________
[ 1817] By: gsar on 1998/09/23 05:57:16
Log: updated usethreads hints for hpux 10.X
From: Matthew T Harden <mthard@mthard1.monsanto.com>
Date: Fri, 28 Aug 1998 14:10:42 GMT
Message-Id: <199808281410.AA11058@mthard1.monsanto.com>
Subject: Re: OK: perl 5.00502 on PA-RISC1.1-thread 10.20 (UNINSTALLED)
Branch: perl
! hints/hpux.sh perl.h
____________________________________________________________________________
[ 1816] By: gsar on 1998/09/23 05:53:31
Log: don't create empty directories in installperl
From: Robin Barker <rmb1@cise.npl.co.uk>
Date: Fri, 21 Aug 1998 11:29:24 +0100 (BST)
Message-Id: <199808211029.LAA00551@cyclone.cise.npl.co.uk>
Subject: [PATCH 5.005_02] install: empty dirs
Branch: perl
! installperl
____________________________________________________________________________
[ 1815] By: gsar on 1998/09/23 05:50:36
Log: make behavior of /(a{3})+/ like /(aaa)+/ w.r.t where it matches
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Fri, 21 Aug 1998 05:41:02 -0400 (EDT)
Message-Id: <199808210941.FAA16467@monk.mps.ohio-state.edu>
Subject: Re: your mail
Branch: perl
! regexec.c t/op/re_tests
____________________________________________________________________________
[ 1814] By: gsar on 1998/09/23 05:45:17
Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
Date: Thu, 20 Aug 1998 20:59:03 -0400
Message-ID: <19980820205903.A12908@O2.chapin.edu>
Subject: [PATCH] h2ph misquotes #error directives
Branch: perl
! t/lib/h2ph.pht utils/h2ph.PL
____________________________________________________________________________
[ 1813] By: gsar on 1998/09/23 05:42:41
Log: patch to support computed regular subexpressions
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Thu, 20 Aug 1998 15:19:50 -0400 (EDT)
Message-Id: <199808201919.PAA04692@monk.mps.ohio-state.edu>
Subject: [5.005_5* PATCH] Postponed RE - now!
Branch: perl
! embedvar.h objXSUB.h pod/perlre.pod regcomp.c regexec.c
! t/op/pat.t t/op/re_tests thrdvar.h toke.c
____________________________________________________________________________
[ 1812] By: gsar on 1998/09/23 05:26:26
Log: better CR-handling on shebang line and in formats (fixed variant of
patch suggested by Igor Sysoev <igor@nitek.ru>)
Branch: perl
! perl.c toke.c
____________________________________________________________________________
[ 1811] By: gsar on 1998/09/23 04:35:46
Log: document non-loopish blocks better
From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
Date: Tue, 18 Aug 1998 12:28:36 +0100
Message-Id: <E0z8jwK-00057Z-00@ursa.cus.cam.ac.uk>
Subject: Re: next in do {} while block gives error message
Branch: perl
! pod/perlfunc.pod
____________________________________________________________________________
[ 1810] By: gsar on 1998/09/23 04:12:05
Log: fix bogus integerization of pop()'s return value
From: Gurusamy Sarathy <gsar@engin.umich.edu>
Date: Sat, 15 Aug 1998 23:27:54 -0400
Message-Id: <199808160327.XAA05186@aatma.engin.umich.edu>
Subject: Re: Complex expression does integer arithmetic
Branch: perl
! opcode.h opcode.pl
____________________________________________________________________________
[ 1809] By: gsar on 1998/09/23 04:09:43
Log: tweak README.win32
Branch: perl
! README.win32
____________________________________________________________________________
[ 1808] By: gsar on 1998/09/23 03:40:57
Log: better diagnostic for do{} used as lvalue
Branch: perl
! op.c pod/perlport.pod
____________________________________________________________________________
[ 1807] By: gsar on 1998/09/23 03:38:30
Log: enable PERL_SBRK_VIA_MALLOC on OPENSTEP-Mach
From: hansm@icgroup.nl
Date: Tue, 11 Aug 98 21:08:51 +0200
Message-Id: <9808111907.AA21903@icgned.icgroup.nl>
Subject: Not OK: perl 5.00551 on OPENSTEP-Mach 4_1 (UNINSTALLED)
Branch: perl
! malloc.c
____________________________________________________________________________
[ 1806] By: gsar on 1998/09/23 03:36:08
Log: support make written in perl (aka "pmake") on win32
Branch: perl
! lib/ExtUtils/MM_Win32.pm
____________________________________________________________________________
[ 1805] By: gsar on 1998/09/23 03:30:07
Log: fix mismatched UV/U32 types for to_utf8_*()
Branch: perl
! utf8.c
____________________________________________________________________________
[ 1804] By: gsar on 1998/09/23 03:22:22
Log: From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
Date: Sun, 9 Aug 1998 22:38:23 +0200
Message-ID: <19980809223823.A215@cdata.tvnet.hu>
Subject: [PATCH 5.5002] dos-djgpp update
Branch: perl
! t/io/fs.t
____________________________________________________________________________
[ 1803] By: gsar on 1998/09/23 03:20:13
Log: apply minimal variant of patch (sent via private mail)
From: jarkko.hietaniemi@research.nokia.com (Jarkko Hietaniemi)
Date: Wed, 12 Aug 1998 15:42:35 +0300
Message-Id: <199808121242.PAA29761@comanche.spices>
Subject: [PATCH] 5.004_02 or 5.005_51: fix regexp and tr character ranges in non-ASCII lands
Branch: perl
! MANIFEST perl.h pod/perllocale.pod pod/perlop.pod
! pod/perlre.pod regcomp.c t/pragma/locale.t toke.c
____________________________________________________________________________
[ 1802] By: gsar on 1998/09/23 03:03:39
Log: adjust searchdict.t for EBCDIC (still needs documenting)
From: pvhp@forte.com (Peter Prymmer)
Date: Thu, 6 Aug 98 18:09:39 PDT
Message-Id: <9808070109.AA06158@forte.com>
Subject: [PATCH 5.005_02-TRIAL2] potential modification to t/lib/searchdict.t
Branch: perl
! README.os390 t/lib/searchdict.t
____________________________________________________________________________
[ 1801] By: gsar on 1998/09/23 02:54:15
Log: silence redefined warning for XS(INIT) {}
Branch: perl
! op.c
____________________________________________________________________________
[ 1800] By: gsar on 1998/09/23 02:42:23
Log: support match indices via special variables @- and @+
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 21 Jul 1998 23:00:35 -0400 (EDT)
Message-Id: <199807220300.XAA16081@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_76] @- and @+
Branch: perl
! av.c embed.h global.sym gv.c mg.c objXSUB.h objpp.h perl.h
! pod/perlvar.pod proto.h regnodes.h sv.c t/op/pat.t toke.c
____________________________________________________________________________
[ 1799] By: gsar on 1998/09/23 01:44:31
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Tue, 11 Aug 1998 18:43:29 -0400 (EDT)
Message-Id: <199808112243.SAA14243@monk.mps.ohio-state.edu>
Subject: Re: Segmentation fault for /a*abc?xyz+pqr{3}ab{2,}xy{4,5}pq{0,6}AB{0,}zz/
Branch: perl
! regcomp.c t/op/re_tests
____________________________________________________________________________
[ 1798] By: gsar on 1998/09/23 01:39:23
Log: integrate maint-5.005 changes (except conflicting change#1794)
Branch: perl
! Changes
!> objXSUB.h op.c pod/perlfunc.pod pp.c regcomp.c t/op/re_tests
!> toke.c util.c win32/config.bc win32/config.gc win32/config.vc
!> win32/win32.h
____________________________________________________________________________
[ 1797] By: gsar on 1998/09/23 01:32:36
Log: add note to win32/Makefile about setting CCHOME
Branch: perl
! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 1796] By: gsar on 1998/09/23 01:31:32
Log: perl.pod tweak
Branch: perl
! pod/perl.pod
____________________________________________________________________________
[ 1795] By: gsar on 1998/09/21 20:34:10
Log: make xsubpp generate well-formed code with CAPI && !PERL_OBJECT
Branch: perl
! lib/ExtUtils/xsubpp
____________________________________________________________________________
[ 1789] By: gsar on 1998/09/18 18:01:37
Log: delay freeing itervar so C<for $i (@a) { return($i) }> works
Branch: perl
! cop.h t/cmd/for.t
____________________________________________________________________________
[ 1788] By: gsar on 1998/09/17 02:19:11
Log: resync win32/config.?c with Porting/config.sh to pick up apiversion
Branch: perl
! win32/config.bc win32/config.gc win32/config.vc
____________________________________________________________________________
[ 1787] By: gsar on 1998/09/17 01:45:14
Log: suppress bogus warning on C<sub x {} x()>
Branch: perl
! toke.c
____________________________________________________________________________
[ 1786] By: gsar on 1998/09/17 01:42:51
Log: ntohl typo in objXSUB.h
Branch: perl
! objXSUB.h
____________________________________________________________________________
[ 1785] By: gsar on 1998/09/17 01:41:48
Log: fill gaps in sig_* entries in win32/config.?c
Branch: perl
! win32/config.bc win32/config.gc win32/config.vc
____________________________________________________________________________
[ 1781] By: larry on 1998/09/05 23:48:24
Log: tr/// logic was hosed under utf8
Branch: perl
! doop.c op.c op.h pp.c proto.h
____________________________________________________________________________
[ 1780] By: larry on 1998/09/05 23:44:16
Log: several new tests needed tweaking to work under utf8
Branch: perl
! t/comp/require.t t/op/pack.t t/op/substr.t
____________________________________________________________________________
[ 1779] By: larry on 1998/09/05 23:41:42
Log: index() applied BM optimization to wrong argument
Branch: perl
! op.c util.c
____________________________________________________________________________
[ 1778] By: larry on 1998/09/05 23:38:29
Log: Implicit require during compile reset line numbering
Branch: perl
! pp_ctl.c
----------------
Version 5.005_51
----------------
____________________________________________________________________________
[ 1777] By: gsar on 1998/08/10 07:02:38
Log: various tweaks: fix signed vs. unsigned problems that prevented C++
builds; add sundry PERL_OBJECT scaffolding to get it to build; fix
lexical warning testsuite for win32
Branch: perl
! Changes doop.c embed.h global.sym objXSUB.h objpp.h op.c
! pod/perlhist.pod pp.c pp_hot.c proto.h regcomp.c regexec.c
! sv.c t/pragma/warn-doio t/pragma/warn-mg t/pragma/warn-op
! t/pragma/warn-regexec toke.c utf8.c win32/GenCAPI.pl
! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 1776] By: gsar on 1998/08/09 17:53:48
Log: fix coredump with MULTIPLICITY (ckWARN() needs early curcop init)
Branch: perl
! Changes MANIFEST perl.c pod/perlhist.pod
____________________________________________________________________________
[ 1775] By: gsar on 1998/08/09 14:35:33
Log: tweak warning test
Branch: perl
! t/pragma/warn-toke
____________________________________________________________________________
[ 1774] By: gsar on 1998/08/09 14:13:46
Log: add missing dTHR; notes for test failures due to small stacksize
Branch: perl
! doio.c gv.c op.c sv.c t/pragma/warn-mg t/pragma/warn-regexec
! toke.c universal.c util.c
____________________________________________________________________________
[ 1773] By: gsar on 1998/08/09 11:31:53
Log: lexical warnings; tweaks to places that didn't apply correctly
From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
Date: Wed, 29 Jul 1998 09:28:45 BST
Message-Id: <9807290828.AA26286@claudius.bfsec.bt.co.uk>
Subject: lexical warnings patch for 5.005_50
Branch: perl
+ README.lexwarn lib/warning.pm t/pragma/warn-2use
+ t/pragma/warn-3both t/pragma/warn-4lint t/pragma/warn-5nolint
+ t/pragma/warn-doio t/pragma/warn-gv t/pragma/warn-mg
+ t/pragma/warn-op t/pragma/warn-perl t/pragma/warn-perly
+ t/pragma/warn-pp t/pragma/warn-pp_ctl t/pragma/warn-pp_hot
+ t/pragma/warn-pp_sys t/pragma/warn-regcomp
+ t/pragma/warn-regexec t/pragma/warn-sv t/pragma/warn-taint
+ t/pragma/warn-toke t/pragma/warn-universal t/pragma/warn-util
+ warning.h warning.pl
! Changes MANIFEST Makefile.SH cop.h doio.c global.sym gv.c
! lib/diagnostics.pm mg.c op.c op.h perl.c perl.h pp.c pp_ctl.c
! pp_hot.c pp_sys.c proto.h regcomp.c regexec.c sv.c t/op/tie.t
! t/pragma/warn-1global t/pragma/warning.t taint.c toke.c
! universal.c util.c
____________________________________________________________________________
[ 1772] By: gsar on 1998/08/08 23:06:00
Log: bump patchlevel to 5.005_51
Branch: perl
! patchlevel.h win32/Makefile win32/config_H.bc
! win32/config_H.gc win32/config_H.vc win32/makefile.mk
____________________________________________________________________________
[ 1771] By: gsar on 1998/08/08 23:01:57
Log: fix bogus warning on "\x{123}"
From: pmarquess@claudius.bfsec.bt.co.uk (Paul Marquess)
Date: Mon, 27 Jul 1998 06:16:15 +0100 (BST)
Message-Id: <9807270534.AA11102@claudius.bfsec.bt.co.uk>
Subject: [5.005_50 PATCH] Some unicode problems
Branch: perl
! regcomp.c toke.c
____________________________________________________________________________
[ 1770] By: gsar on 1998/08/08 22:56:55
Log: hide dup symbol for static build of ext/re
From: Dominic Dunlop <domo@ppp72.vo.lu>
Date: Wed, 29 Jul 1998 11:09:56 +0100 (WET DST)
Message-Id: <199807291009.LAA08935@ppp72.vo.lu>
Subject: Not OK: perl 5.00550 on powerpc-machten 4.1 [BOGUS PATCH]
Branch: perl
! regcomp.c
____________________________________________________________________________
[ 1769] By: gsar on 1998/08/08 22:45:06
Log: fix double free on -Mutf8 -e '$b=uc("")'
From: larry@wall.org (Larry Wall)
Date: Fri, 7 Aug 1998 14:42:43 -0700
Message-Id: <199808072142.OAA14920@wall.org>
Subject: [PATCH 5.005_50]: uc("") and lc("") under utf8 fails
Branch: perl
! pp.c
____________________________________________________________________________
[ 1768] By: gsar on 1998/08/08 22:42:29
Log: substr() assumes utf8 without say-so
From: larry@wall.org (Larry Wall)
Date: Fri, 7 Aug 1998 12:25:12 -0700
Message-Id: <199808071925.MAA13436@wall.org>
Subject: [PATCH 5.005_50] substr bug?
Branch: perl
! pp.c
____________________________________________________________________________
[ 1767] By: gsar on 1998/08/08 22:38:25
Log: fix intolerance of SWASHes for blank lines
From: Gisle Aas <aas@sn.no>
Date: 06 Aug 1998 23:28:57 +0200
Message-ID: <m3emutkdeu.fsf@furu.g.aas.no>
Subject: Re: Re[2]: another joyride begins
Branch: perl
! lib/utf8_heavy.pl
____________________________________________________________________________
[ 1766] By: gsar on 1998/08/08 22:33:10
Log: utf8 doc tweak
From: Gisle Aas <aas@sn.no>
Date: 05 Aug 1998 00:41:04 +0200
Message-ID: <m3yat4wetb.fsf@furu.g.aas.no>
Subject: Matching clumps
Branch: perl
! lib/utf8.pm
____________________________________________________________________________
[ 1765] By: gsar on 1998/08/08 22:31:37
Log: kill bogus warning from -we 'use utf8; $_="\x{FF}"'
From: Gisle Aas <aas@sn.no>
Date: 04 Aug 1998 22:56:11 +0200
Message-ID: <m3yat4sbys.fsf@furu.g.aas.no>
Subject: Re: another joyride begins
Branch: perl
! lib/utf8_heavy.pl
____________________________________________________________________________
[ 1764] By: gsar on 1998/08/08 22:28:43
Log: From: larry@wall.org (Larry Wall)
Date: Tue, 4 Aug 1998 17:04:51 -0700
Message-Id: <199808050004.RAA22592@wall.org>
Subject: [PATCH 5.005_50] \pX not implemented!
Branch: perl
! regcomp.c
____________________________________________________________________________
[ 1763] By: gsar on 1998/08/08 22:27:15
Log: From: Stephen McCamant <alias@mcs.com>
Date: Sun, 2 Aug 1998 16:33:18 -0500 (CDT)
Message-ID: <13764.55116.921952.837027@alias-2.pr.mcs.net>
Subject: [PATCH] Eliminate superfluous RV2p[AH]Vs in oops[AH]V()
Branch: perl
! op.c
____________________________________________________________________________
[ 1762] By: gsar on 1998/08/08 22:26:09
Log: From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sun, 2 Aug 1998 22:05:28 +0300 (EET DST)
Message-Id: <199808021905.WAA10592@alpha.hut.fi>
Subject: [PATCH] 5.005_02-TRIAL1 or 5.004_05-MAINT_TRIAL_5: t/op/{pw,gr}ent.t
Branch: perl
+ t/op/grent.t t/op/pwent.t
! MANIFEST
____________________________________________________________________________
[ 1761] By: gsar on 1998/08/08 22:21:52
Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Thu, 30 Jul 1998 19:23:56 -0400 (EDT)
Message-Id: <199807302323.TAA21175@monk.mps.ohio-state.edu>
Subject: [5.005_50 PATCH] misprint in RE engine
Branch: perl
! regexec.c t/op/re_tests
____________________________________________________________________________
[ 1760] By: gsar on 1998/08/08 22:18:54
Log: integrate maint-5.005 changes into mainline
Branch: perl
+> Porting/fixCORE README.os390 ebcdic.c win32/des_fcrypt.patch
!> (integrate 138 files)
____________________________________________________________________________
[ 1672] By: gsar on 1998/07/27 18:35:28
Log: create new Changes
Branch: perl
+ Changes
! Changes5.005 MANIFEST
____________________________________________________________________________
[ 1671] By: gsar on 1998/07/27 18:30:57
Log: rename Changes --> Changes5.005
Branch: perl
+> Changes5.005
- Changes
____________________________________________________________________________
[ 1670] By: gsar on 1998/07/27 18:10:14
Log: integrate 5.005_01 changes from maint
Branch: perl
! Changes
!> README.win32 pod/perldelta.pod proto.h toke.c win32/GenCAPI.pl
!> win32/win32.c
____________________________________________________________________________
[ 1667] By: nick on 1998/07/26 14:31:01
Log: Add dTHR so that it compiles miniperl in threaded mode
Branch: perl
! doop.c mg.c regcomp.c regexec.c
____________________________________________________________________________
[ 1666] By: nick on 1998/07/26 13:01:10
Log: Resolve ansiperl against mainline (@1648?)
Unclear that change number has "taken".
Branch: ansiperl
+> (branch 169 files)
- ObjXSub.h XSLock.h compat3.sym fixvars pod/perld4.pod
!> (integrate 131 files)
----------------
Version 5.005_50
----------------
____________________________________________________________________________
[ 1665] By: gsar on 1998/07/26 05:38:48
Log: add trailing newline to file
Branch: perl
! Changes lib/unicode/blocks.txt
____________________________________________________________________________
[ 1664] By: gsar on 1998/07/26 05:08:48
Log: integrate proto.h additions from maint-5.005
Branch: perl
!> pod/perlhist.pod proto.h
____________________________________________________________________________
[ 1663] By: gsar on 1998/07/26 05:07:05
Log: add new files to MANIFEST; add missing prototypes to proto.h;
s/PL_utf8skip/utf8skip/ for now, or we end up with Perl_PL_;
add typecasts to silence warnings; tweaks for win32 builds
Branch: perl
! MANIFEST embed.h global.sym proto.h regexec.c toke.c utf8.h
! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 1662] By: gsar on 1998/07/26 05:01:52
Log: add missing sv_*_mg() prototypes in proto.h, update perlhist.pod
Branch: maint-5.005/perl
! pod/perlhist.pod proto.h
____________________________________________________________________________
[ 1661] By: gsar on 1998/07/26 02:52:48
Log: up patchlevel to 5.005_50
Branch: perl
! Changes patchlevel.h win32/Makefile win32/config_H.bc
! win32/config_H.gc win32/config_H.vc win32/makefile.mk
____________________________________________________________________________
[ 1660] By: gsar on 1998/07/26 02:43:57
Log: integrate utfperl
Branch: perl
+> (branch 162 files)
!> (integrate 29 files)
____________________________________________________________________________
[ 1659] By: gsar on 1998/07/26 02:38:22
Log: integrate maint-5.005 changes
Branch: perl
!> Changes README.vms djgpp/fixpmain emacs/ptags hints/beos.sh
!> lib/Math/BigInt.pm pod/perldelta.pod pod/perlmodinstall.pod
!> pod/perltoc.pod pp_sys.c t/lib/bigintpm.t
!> vms/descrip_mms.template vms/subconfigure.com
____________________________________________________________________________
[ 1658] By: gsar on 1998/07/26 02:23:46
Log: VMS patches from Dan Sugalski <sugalskd@osshe.edu>
Date: Fri, 24 Jul 1998 11:38:25 -0700
Message-Id: <3.0.5.32.19980724113825.00a067b0@ous.edu>
Subject: [PATCH 5.005] version number problem with VMS (Corrected)
--
Date: Fri, 24 Jul 1998 12:30:36 -0700
Message-Id: <3.0.5.32.19980724123036.009f0390@ous.edu>
Subject: [PATCH 5.005]Tweaks to README.vms
--
Date: Sat, 25 Jul 1998 17:56:55 -0700 (PDT)
Message-ID: <Pine.GSO.3.96.980725175626.15740D-100000@netserve.ous.edu>
Subject: [PATCH 5.005] Final build cleanup patch
Branch: maint-5.005/perl
! README.vms vms/descrip_mms.template vms/subconfigure.com
____________________________________________________________________________
[ 1657] By: gsar on 1998/07/26 02:19:50
Log: another platform where pp_sselect() needs a whole fd_set buffer
From: Lupe Christoph <lupe@alanya.m.isar.de>
Date: Sat, 25 Jul 1998 19:49:33 +0200 (MET DST)
Message-Id: <199807251749.TAA22347@alanya.m.isar.de>
Subject: Patch for Not OK: perl 5.005 on i86pc-solaris-thread 2.6
Branch: maint-5.005/perl
! pp_sys.c
____________________________________________________________________________
[ 1656] By: gsar on 1998/07/26 02:12:46
Log: fix problem building modules on dos-djgpp
From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
Date: Sat, 25 Jul 1998 00:53:39 +0200
Message-ID: <19980725005339.C222@cdata.tvnet.hu>
Subject: [PATCH 5.005] dos-djgpp and modules problem
Branch: maint-5.005/perl
! djgpp/fixpmain
____________________________________________________________________________
[ 1655] By: gsar on 1998/07/26 02:11:09
Log: From: Tom Spindler <dogcow@home.merit.edu>
Date: Wed, 22 Jul 1998 16:11:07 -0400
Message-ID: <19980722161107.A16813@home.merit.edu>
Subject: [PATCH 5.005] BeOS tweak
Branch: maint-5.005/perl
! hints/beos.sh
____________________________________________________________________________
[ 1654] By: gsar on 1998/07/26 02:09:29
Log: various pod tweaks
Branch: maint-5.005/perl
! Changes pod/perldelta.pod pod/perlmodinstall.pod
! pod/perltoc.pod
____________________________________________________________________________
[ 1653] By: gsar on 1998/07/26 02:05:46
Log: fix emacs/ptags for PL_* changes
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Fri, 24 Jul 1998 03:12:35 -0400 (EDT)
Message-Id: <199807240712.DAA04204@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_76] Yet better ptags
Branch: maint-5.005/perl
! emacs/ptags
____________________________________________________________________________
[ 1652] By: gsar on 1998/07/26 02:03:01
Log: fix behavior of <=> on bigints
From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
Message-Id: <E0yzlfF-0004kz-00@taurus.cus.cam.ac.uk>
Date: Fri, 24 Jul 1998 18:29:53 +0100
Subject: [PATCH] Re: Math::BigInt <=> op is not correct.
Branch: maint-5.005/perl
! lib/Math/BigInt.pm t/lib/bigintpm.t
____________________________________________________________________________
[ 1651] By: larry on 1998/07/24 05:44:33
Log: Here are the long-expected Unicode/UTF-8 modifications.
Branch: utfperl
+ lib/unicode/ArabLink.pl lib/unicode/ArabLnkGrp.pl
+ lib/unicode/Bidirectional.pl lib/unicode/Block.pl
+ lib/unicode/Category.pl lib/unicode/CombiningClass.pl
+ lib/unicode/Decomposition.pl
+ lib/unicode/In/AlphabeticPresentationForms.pl
+ lib/unicode/In/Arabic.pl
+ lib/unicode/In/ArabicPresentationForms-A.pl
+ lib/unicode/In/ArabicPresentationForms-B.pl
+ lib/unicode/In/Armenian.pl lib/unicode/In/Arrows.pl
+ lib/unicode/In/BasicLatin.pl lib/unicode/In/Bengali.pl
+ lib/unicode/In/BlockElements.pl lib/unicode/In/Bopomofo.pl
+ lib/unicode/In/BoxDrawing.pl
+ lib/unicode/In/CJKCompatibility.pl
+ lib/unicode/In/CJKCompatibilityForms.pl
+ lib/unicode/In/CJKCompatibilityIdeographs.pl
+ lib/unicode/In/CJKSymbolsandPunctuation.pl
+ lib/unicode/In/CJKUnifiedIdeographs.pl
+ lib/unicode/In/CombiningDiacriticalMarks.pl
+ lib/unicode/In/CombiningHalfMarks.pl
+ lib/unicode/In/CombiningMarksforSymbols.pl
+ lib/unicode/In/ControlPictures.pl
+ lib/unicode/In/CurrencySymbols.pl lib/unicode/In/Cyrillic.pl
+ lib/unicode/In/Devanagari.pl lib/unicode/In/Dingbats.pl
+ lib/unicode/In/EnclosedAlphanumerics.pl
+ lib/unicode/In/EnclosedCJKLettersandMonths.pl
+ lib/unicode/In/GeneralPunctuation.pl
+ lib/unicode/In/GeometricShapes.pl lib/unicode/In/Georgian.pl
+ lib/unicode/In/Greek.pl lib/unicode/In/GreekExtended.pl
+ lib/unicode/In/Gujarati.pl lib/unicode/In/Gurmukhi.pl
+ lib/unicode/In/HalfwidthandFullwidthForms.pl
+ lib/unicode/In/HangulCompatibilityJamo.pl
+ lib/unicode/In/HangulJamo.pl lib/unicode/In/HangulSyllables.pl
+ lib/unicode/In/Hebrew.pl
+ lib/unicode/In/HighPrivateUseSurrogates.pl
+ lib/unicode/In/HighSurrogates.pl lib/unicode/In/Hiragana.pl
+ lib/unicode/In/IPAExtensions.pl lib/unicode/In/Kanbun.pl
+ lib/unicode/In/Kannada.pl lib/unicode/In/Katakana.pl
+ lib/unicode/In/Lao.pl lib/unicode/In/Latin-1Supplement.pl
+ lib/unicode/In/LatinExtended-A.pl
+ lib/unicode/In/LatinExtended-B.pl
+ lib/unicode/In/LatinExtendedAdditional.pl
+ lib/unicode/In/LetterlikeSymbols.pl
+ lib/unicode/In/LowSurrogates.pl lib/unicode/In/Malayalam.pl
+ lib/unicode/In/MathematicalOperators.pl
+ lib/unicode/In/MiscellaneousSymbols.pl
+ lib/unicode/In/MiscellaneousTechnical.pl
+ lib/unicode/In/NumberForms.pl
+ lib/unicode/In/OpticalCharacterRecognition.pl
+ lib/unicode/In/Oriya.pl lib/unicode/In/PrivateUse.pl
+ lib/unicode/In/SmallFormVariants.pl
+ lib/unicode/In/SpacingModifierLetters.pl
+ lib/unicode/In/Specials.pl
+ lib/unicode/In/SuperscriptsandSubscripts.pl
+ lib/unicode/In/Tamil.pl lib/unicode/In/Telugu.pl
+ lib/unicode/In/Thai.pl lib/unicode/In/Tibetan.pl
+ lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
+ lib/unicode/Is/BidiAN.pl lib/unicode/Is/BidiB.pl
+ lib/unicode/Is/BidiCS.pl lib/unicode/Is/BidiEN.pl
+ lib/unicode/Is/BidiES.pl lib/unicode/Is/BidiET.pl
+ lib/unicode/Is/BidiL.pl lib/unicode/Is/BidiON.pl
+ lib/unicode/Is/BidiR.pl lib/unicode/Is/BidiS.pl
+ lib/unicode/Is/BidiWS.pl lib/unicode/Is/C.pl
+ lib/unicode/Is/Cc.pl lib/unicode/Is/Cn.pl lib/unicode/Is/Co.pl
+ lib/unicode/Is/DCcircle.pl lib/unicode/Is/DCcompat.pl
+ lib/unicode/Is/DCfinal.pl lib/unicode/Is/DCfont.pl
+ lib/unicode/Is/DCinital.pl lib/unicode/Is/DCinitial.pl
+ lib/unicode/Is/DCisolated.pl lib/unicode/Is/DCnarrow.pl
+ lib/unicode/Is/DCnoBreak.pl lib/unicode/Is/DCsmall.pl
+ lib/unicode/Is/DCsquare.pl lib/unicode/Is/DCsub.pl
+ lib/unicode/Is/DCsuper.pl lib/unicode/Is/DCvertical.pl
+ lib/unicode/Is/DCwide.pl lib/unicode/Is/DecoCanon.pl
+ lib/unicode/Is/DecoCompat.pl lib/unicode/Is/Digit.pl
+ lib/unicode/Is/L.pl lib/unicode/Is/Ll.pl lib/unicode/Is/Lm.pl
+ lib/unicode/Is/Lo.pl lib/unicode/Is/Lower.pl
+ lib/unicode/Is/Lt.pl lib/unicode/Is/Lu.pl lib/unicode/Is/M.pl
+ lib/unicode/Is/Mc.pl lib/unicode/Is/Mirrored.pl
+ lib/unicode/Is/Mn.pl lib/unicode/Is/N.pl lib/unicode/Is/Nd.pl
+ lib/unicode/Is/No.pl lib/unicode/Is/P.pl lib/unicode/Is/Pd.pl
+ lib/unicode/Is/Pe.pl lib/unicode/Is/Po.pl
+ lib/unicode/Is/Print.pl lib/unicode/Is/Ps.pl
+ lib/unicode/Is/S.pl lib/unicode/Is/Sc.pl lib/unicode/Is/Sm.pl
+ lib/unicode/Is/So.pl lib/unicode/Is/Space.pl
+ lib/unicode/Is/Upper.pl lib/unicode/Is/Z.pl
+ lib/unicode/Is/Zl.pl lib/unicode/Is/Zp.pl lib/unicode/Is/Zs.pl
+ lib/unicode/JamoShort.pl lib/unicode/Makefile
+ lib/unicode/Name.pl lib/unicode/Number.pl
+ lib/unicode/To/Digit.pl lib/unicode/To/Lower.pl
+ lib/unicode/To/Title.pl lib/unicode/To/Upper.pl
+ lib/unicode/UnicodeData-Latest.txt lib/unicode/arabshp.txt
+ lib/unicode/blocks.txt lib/unicode/index2.txt
+ lib/unicode/jamo2.txt lib/unicode/mktables.PL
+ lib/unicode/names2.txt lib/unicode/props2.txt
+ lib/unicode/readme.txt lib/utf8.pm lib/utf8_heavy.pl t/UTEST
+ utf8.c utf8.h
! Makefile.SH doop.c embed.h embedvar.h global.sym handy.h mg.c
! op.c op.h perl.h perlvars.h pod/perlfunc.pod pod/perlop.pod
! pod/perlre.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
! regcomp.h regcomp.sym regexec.c regexp.h regnodes.h sv.c
! t/op/vec.t toke.c util.c vms/vmsish.h
____________________________________________________________________________
[ 1650] By: gsar on 1998/07/24 04:06:48
Log: create utfperl branch
Branch: utfperl
+> (branch 1079 files)
____________________________________________________________________________
[ 1649] By: gsar on 1998/07/24 03:56:56
Log: create maint-5.005 branch
Branch: maint-5.005/perl
+> (branch 1079 files)
____________________________________________________________________________
[ 1648] By: gsar on 1998/07/24 03:36:35
Log: un-checked-in 5.005 Changes (this is 5.005 *exactly*)
Branch: perl
! Changes
|