-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
12921 lines (7133 loc) · 384 KB
/
ChangeLog
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
Tue Nov 13 16:49:16 2001 Usaku Nakamura <[email protected]>
* win32/win32.c (mypopen): return error status instead of calling
rb_sys_fail().
* win32/win32.c (do_spawn): ditto.
Tue Nov 13 14:39:11 2001 WATANABE Tetsuya <[email protected]>
* signal.c (sighandle): should not re-register sighandler if
POSIX_SIGNAL is defined.
Tue Nov 13 12:55:59 2001 Usaku Nakamura <[email protected]>
* win32/win32.c (do_spawn): use CreateChild() instead of calling
CreateProcess() directly. Original patches comes from Patrick Cheng.
* win32/win32.c (mypopen): ditto.
* win32/win32.c (mypclose): use rb_syswait() instead of waiting in this
function.
* win32/win32.c (waitpid): use wait_child() instead of _cwait().
* win32/win32.c (CreateChild): added. [new]
* win32/win32.c (wait_child): added. [new]
* win32/win32.c (FindFirstChildSlot): added. [new]
* win32/win32.c (FindChildSlot): added. [new]
* win32/win32.c (FindPipedChildSlot): added. [new]
* win32/win32.c (CloseChildHandle): added. [new]
* win32/win32.c (FindFreeChildSlot): added. [new]
Tue Nov 13 12:38:12 2001 Usaku Nakamura <[email protected]>
* hash.c (envix): use GET_ENVIRON and FREE_ENVIRON to get environment
variables list.
* hash.c (env_keys): ditto.
* hash.c (env_each_key): ditto.
* hash.c (env_values): ditto.
* hash.c (env_keys): ditto.
* hash.c (env_each_value): ditto.
* hash.c (env_each): ditto.
* hash.c (env_inspect): ditto.
* hash.c (env_to_a): ditto.
* hash.c (env_size): ditto.
* hash.c (env_empty_p): ditto.
* hash.c (env_has_value): ditto.
* hash.c (env_index): ditto.
* hash.c (env_to_hash): ditto.
* win32/win32.c (win32_getenv): use static buffer.
* win32/win32.c, win32/win32.h (win32_get_environ): get environment
variables list. [new]
* win32/win32.c, win32/win32.h (win32_free_environ): free environment
variables list. [new]
Mon Nov 12 16:48:48 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (error_print): errat array may be empty.
Mon Nov 12 01:30:37 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval_cmd): should not upgrade safe level unless
explicitly specified by argument newly added.
* signal.c (sig_trap): should not allow tainted trap closure.
* variable.c (rb_f_trace_var): should not allow trace_var on safe
level higher than 3.
* variable.c (rb_f_trace_var): should not allow tainted trace
closure.
Sun Nov 11 00:12:23 2001 TAMURA Takashi <[email protected]>
* gc.c: do not use static stack until system stack overflows.
Sat Nov 10 03:57:09 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): should call Exception#exception instead of
calling rb_exc_new3() directly.
* error.c (exc_exception): set "mesg" directly to the clone. it
might be better to set mesg via some method for flexibility.
Sat Nov 10 00:14:24 2001 Yukihiro Matsumoto <[email protected]>
* variable.c (cvar_override_check): should print original module
name, if 'a' is T_ICLASS.
* parse.y (yylex): float '1_.0' should not be allowed.
* variable.c (var_getter): should care about var as Qfalse
(ruby-bugs#PR199).
Fri Nov 9 13:50:06 2001 Usaku Nakamura <[email protected]>
* win32/config.status.in: make CFLAGS same as Makefile's one.
Thu Nov 8 20:20:37 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_trap_eval): avoid annoying warning with signal.
[ruby-talk:23225]
* eval.c (rb_call0): adjust caller source file/line while
evaluating optional arguments.
Thu Nov 8 18:41:58 2001 Yukihiro Matsumoto <[email protected]>
* array.c (cmpint): <=> or block for {min,max} may return bignum.
* array.c (sort_1): use rb_compint.
* array.c (sort_2): ditto.
* enum.c (min_ii): ditto.
* enum.c (min_ii): ditto.
* enum.c (max_i): ditto.
* enum.c (max_ii): ditto.
Thu Nov 8 18:21:02 2001 Yukihiro Matsumoto <[email protected]>
* file.c (path_check_1): forgot to initialize 'p'.
Thu Nov 8 14:52:15 2001 Tanaka Akira <[email protected]>
* mkconfig.rb: use String#dump to generate Ruby string literal.
Thu Nov 8 15:46:54 2001 Yukihiro Matsumoto <[email protected]>
* range.c (range_eql): should override 'eql?'
* array.c (rb_ary_hash): should override 'hash' too.
Tue Nov 6 14:38:48 2001 Yukihiro Matsumoto <[email protected]>
* process.c (security): always give warning for insecure PATH.
* dir.c (my_getcwd): do not rely on MAXPATHLEN.
* file.c (rb_file_s_readlink): ditto.
* file.c (path_check_1): ditto.
Tue Nov 6 14:17:14 2001 Amos Gouaux <[email protected]>
* lib/net/imap.rb (getquota_response): use astring for mailbox
names.
* lib/net/imap.rb (getacl_response): ditto.
Mon Nov 5 17:09:55 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_yield_0): should not call rb_f_block_given_p().
Sat Nov 3 23:33:18 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_chomp_bang): should terminate string by NUL.
Sat Nov 3 22:28:51 2001 Keiju Ishitsuka <[email protected]>
* matrix.rb (Matrix#column_vectors, Matrix#row_vectors): ditto bug.
this bug report and fix by [email protected].
* forwardable.rb: change raise to Kernel::raise
Sat Nov 3 10:11:57 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_yield_0): better error message.
Thu Nov 1 14:08:42 2001 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_aref): idx may be a Bignum.
* numeric.c (fix_aref): negative index must return zero.
Thu Nov 1 13:23:50 2001 Yukihiro Matsumoto <[email protected]>
* gc.c (gc_mark_children): should NOT treat last element of
structs and arrays specially.
Wed Oct 31 16:59:25 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (exec_under): should initialize ruby_frame->self;
Wed Oct 31 15:09:28 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (POP_VARS): should not set DVAR_DONT_RECYCLE if _old
ruby_vars is already force_recycled.
Wed Oct 31 10:28:49 2001 Yukihiro Matsumoto <[email protected]>
* gc.c (rb_gc): handles mark stack overflow.
* gc.c (PUSH_MARK): use static mark stack, no more recursion.
Wed Oct 31 02:44:06 2001 Wakou Aoyama <[email protected]>
* lib/cgi.rb: CGI::Cookie::parse(): Ignore duplicate keys caused by
Netscape bug.
Tue Oct 30 18:21:51 2001 Usaku Nakamura <[email protected]>
* win32/mkexports.rb: follow the change of rb_io_puts().
Tue Oct 30 14:04:04 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'.
* io.c (rb_io_puts): don't treat Array specially.
* bignum.c (rb_big_cmp): should convert bignum to float.
* eval.c (rb_f_eval): can't modify untainted binding.
Mon Oct 29 16:08:30 2001 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): should preverve p0 value.
Mon Oct 29 14:56:44 2001 Usaku Nakamura <[email protected]>
* intern.h (rb_protect_inspect): follow the change of array.c.
* eval.c (rb_exec_end_proc): follow the change of rb_protect().
* eval.c (method_proc, umethod_proc, rb_catch): cast the first
parameter of rb_iterate() to avoid VC++ warning.
* range.c (range_step): ditto.
* ext/sdbm/init.c (fsdbm_update, fsdbm_replace): ditto.
Mon Oct 29 07:57:31 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (str_extend): should allow interpolation of $-x.
* variable.c (rb_cvar_set): empty iv_tbl may cause infinite loop.
* variable.c (rb_cvar_get): ditto.
* variable.c (cvar_override_check): ditto.
Sat Oct 27 23:01:19 2001 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_eq): convert Bignum to Float, instead of
reverse.
Fri Oct 26 06:19:29 2001 Yukihiro Matsumoto <[email protected]>
* time.c (time_localtime): getting tm should not be prohibited for
frozen time objects.
* time.c (time_gmtime): ditto.
* version.c (Init_version): freeze RUBY_VERSION,
RUBY_RELEASE_DATE, and RUBY_PLATFORM.
* file.c (Init_File): freeze File::SEPARATOR, ALT_SEPARATOR and
PATH_SEPARATOR.
* file.c (rb_stat_cmp): should check operand type before calling
get_stat().
Thu Oct 25 10:28:15 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval_cmd): should not invoke "call" with a block on
any occasion.
Wed Oct 24 03:25:31 2001 Yukihiro Matsumoto <[email protected]>
* numeric.c (fix_aref): idx may be a Bignum.
Tue Oct 23 01:21:19 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (proc_invoke): fix self switching in Proc#call
(ruby-bugs-ja#PR108) and GC failure. use Qundef instead of 0
to direct not switching self.
* eval.c (call_trace_func): ditto.
* eval.c (call_end_proc): ditto.
* eval.c (proc_call): ditto.
* eval.c (proc_yield): ditto.
Tue Oct 23 01:15:43 2001 K.Kosako <[email protected]>
* variable.c (rb_global_entry): reconstruct global variable
aliasing (sharing global_entry->var with other global_entry).
* variable.c (undef_getter): ditto.
* variable.c (undef_setter): ditto.
* variable.c (val_setter): ditto.
* variable.c (mark_global_entry): ditto.
* variable.c (rb_define_hooked_variable): ditto.
* variable.c (rb_f_trace_var): ditto.
* variable.c (remove_trace): ditto.
* variable.c (rb_f_untrace_var): ditto.
* variable.c (rb_gvar_get): ditto.
* variable.c (trace_en): ditto.
* variable.c (rb_gvar_set): ditto.
* variable.c (rb_gvar_defined): ditto.
* variable.c (rb_alias_variable): ditto.
Mon Oct 22 18:53:55 2001 Masahiro Tanaka <[email protected]>
* numeric.c (num_remainder): a bug in Numeric#remainder.
Mon Oct 22 15:21:55 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_exec_end_proc): END might be called within END
block.
* class.c (rb_mod_clone): should not copy class name, since clone
should remain anonymous.
Fri Oct 19 23:40:37 2001 Nobuyoshi Nakada <[email protected]>
* variable.c (remove_trace): should not access already freed area.
* variable.c (rb_f_untrace_var): fix memory leak.
Fri Oct 19 17:55:14 2001 Nobuyoshi Nakada <[email protected]>
* marshal.c (w_uclass): cloned class is not user
class. (ruby-bugs-ja#PR103)
* marshal.c (r_object): Struct subclass couldn't
load. (ruby-bugs-ja#PR104)
Wed Oct 17 14:12:50 2001 Nobuyoshi Nakada <[email protected]>
* variable.c (alias_fixup): added. ad hoc support for ordinary
global variable aliasing. when original entry is set, make the
alias to refer directly as possible.
* variable.c (alias_getter, alias_setter): ditto.
* variable.c (rb_alias_variable): ditto. and no need to mark alias
variables.
* variable.c (rb_gvar_defined): refer the original entry of an alias.
Tue Oct 16 23:29:26 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_call0): self in a block given to define_method now be
switched to the receiver of the method.
* eval.c (proc_invoke): added new parameter to allow self
switching.
Tue Oct 16 21:38:15 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_f_missing): check stack level with rb_stack_check().
* eval.c (rb_call0): ditto.
* eval.c, intern.h (rb_stack_check): added. [new]
Tue Oct 16 13:18:47 2001 Nobuyoshi Nakada <[email protected]>
* object.c (rb_mod_initialize): optional block with
Module.new. [new] (from 2001-10-10)
Tue Oct 16 00:07:06 2001 Nobuyoshi Nakada <[email protected]>
* parse.y (yylex): disallow alpha-numeric and mbchar for
terminator of %string.
Mon Oct 15 18:00:05 2001 Pit Capitain <[email protected]>
* string.c (rb_str_index): wrong increment for non alphanumeric
string.
Mon Oct 15 05:23:02 2001 Koji Arai <[email protected]>
* sprintf.c (rb_f_sprintf): support "%B".
Wed Oct 10 03:11:47 2001 Yukihiro Matsumoto <[email protected]>
* file.c (rb_stat_clone): should copy internal data too.
* numeric.c (num_clone): Numeric should not be copied by clone.
* object.c (rb_obj_clone): should check immediate values.
* parse.y (command): `yield' should take command_args.
* parse.y (parse_quotedwords): %w(...) is not a string.
Tue Oct 9 18:40:35 2001 WATANABE Hirofumi <[email protected]>
* process.c (Init_process): activate the case NT.
Tue Oct 9 17:08:00 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (thread_status_name): separated from
rb_thread_inspect(). return string expression for thread status.
* eval.c (rb_thread_status, rb_thread_inspect): use
thread_status_name().
* eval.c (rb_thread_priority_set): return the priority not but
self.
Sat Oct 6 23:07:08 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): NODE_MATCH3 was confusing left and right. sigh.
Fri Oct 5 15:19:46 2001 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_unique): should not dump anonymous class.
Fri Oct 5 11:59:13 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (proc_s_new): revived.
* eval.c (Init_Proc): define Proc.new instead of Proc.allocate to
inhibit from creating uninitialized Proc.
Thu Oct 4 14:11:03 2001 WATANABE Hirofumi <[email protected]>
* ext/socket/socket.c (ruby_connect): EALREADY is the equivalent
for EINPROGRESS in ws2_32.lib.
Wed Oct 3 20:11:06 2001 Nobuyoshi Nakada <[email protected]>
* re.c (rb_reg_s_alloc): avoid inifinte recursion.
Wed Oct 3 16:49:49 2001 Nobuyoshi Nakada <[email protected]>
* ext/gdbm/gdbm.c (rb_gdbm_fetch): str is a VALUE now.
Wed Oct 3 13:32:06 2001 Yukihiro Matsumoto <[email protected]>
* marshal.c (r_object): better allocation type check for
TYPE_UCLASS. usage of allocation framework is disabled for now.
* variable.c (rb_class_path): Module may have subclass.
* string.c (rb_str_update): should maintain original negative
offset.
* string.c (rb_str_subpat_set): ditto
* string.c (rb_str_aset): ditto.
* re.c (rb_reg_nth_match): should check negative nth.
* re.c (rb_reg_nth_defined): ditto.
Tue Oct 2 19:12:47 2001 WATANABE Hirofumi <[email protected]>
* lib/ftools.rb (catname): allow trailing '/' for the destination.
Tue Oct 2 18:31:20 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): should override existing class.
Tue Oct 2 17:08:49 2001 Yukihiro Matsumoto <[email protected]>
* object.c (rb_obj_alloc): general instance allocation framework.
use of NEWOBJ() is deprecated except within 'allocate' method.
Tue Oct 2 08:04:52 2001 Nobuyoshi Nakada <[email protected]>
* marshal.c (r_object): TYPE_UCLASS check should be inversed.
Mon Oct 1 19:18:54 2001 Tanaka Akira <[email protected]>
* ext/socket/socket.c (unix_addr): getsockname(2) may result len = 0.
* ext/socket/socket.c (unix_peeraddr): getpeername(2) may result
len = 0.
Mon Oct 1 09:59:07 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_subpat_set): support function for new argument
pattern String#[re,offset] = val. [new]
Sat Sep 29 02:30:06 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (POP_BLOCK): rb_gc_force_recycle() was called too much.
Should not be called if SCOPE_DONT_RECYCLE is set.
Wed Sep 26 22:21:52 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_aref_m): new argument pattern
String#[re,offset]. [new]
Wed Sep 26 19:02:39 2001 Guy Decoux <[email protected]>
* parse.y: allow 'primary[] = arg'
Tue Sep 25 10:46:42 2001 Usaku Nakamura <[email protected]>
* win32/win32.c (isInternalCmd): check return value of NtMakeCmdVector
(Tietew <[email protected]>'s patch).
Mon Sep 24 00:55:06 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_substr): should return an instance of
receiver's class.
* string.c (rb_str_succ): ditto.
* array.c (rb_ary_subseq): ditto.
* array.c (rb_ary_initialize): Array.new([1,2,3]) => [1,2,3]. [new]
Sat Sep 22 22:16:08 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_reverse): should return an instance of
receiver's class.
* string.c (rb_str_times): ditto.
* array.c (rb_ary_times): ditto
* string.c (str_gsub): ditto.
* string.c (rb_str_ljust): ditto.
* string.c (rb_str_rjust): ditto.
* string.c (rb_str_center): ditto.
Sat Sep 22 12:13:39 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): retrieves file, line information from binding.
Thu Sep 20 21:25:00 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (MATCH_DATA): access via rb_svar().
Thu Sep 20 15:20:00 2001 Nobuyoshi Nakada <[email protected]>
* eval.c, intern.h (rb_svar): return reference to special variable
from local variable index. [new]
* eval.c (rb_eval): use rb_svar() for NODE_FLIP{2,3}.
* parse.y (rb_(backref|lastline)_(get|set)): access via rb_svar().
* eval.c (proc_invoke): push dynamic variables.
* eval.c (rb_thread_yield): push special variables as dynamic
variables($_, $~ and FLIP states).
Thu Sep 20 15:20:00 2001 Nobuyoshi Nakada <[email protected]>
* intern.h, parse.y (rb_is_local_id): return true if the ID is
local symbol. [new]
* parse.y (internal_id): make new ID for internal use. [new]
* parse.y (cond0): allocate internal ID for NODE_FLIP{2,3}.
* eval.c (rb_f_local_variables): use rb_is_local_id() to select
visible local variables.
Thu Sep 20 15:20:00 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_thread_start_0): SCOPE_SHARED is removed.
* eval.c, intern.h (rb_thread_scope_shared_p): removed. special
variables are no longer shared by threads.
* re.c (rb_reg_search): MATCHDATA is no longer shared by threads.
Tue Sep 18 11:44:26 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_init): String.new() => "" [new]
Tue Sep 11 20:53:56 2001 Yukihiro Matsumoto <[email protected]>
* dir.c (dir_path): new method.
* dir.c (dir_initialize): wrap DIR into struct, along with path
information.
Sat Sep 8 07:13:42 2001 Wakou Aoyama <[email protected]>
* lib/net/telnet.rb: waitfor(): improvement. thanks to
Sat Sep 8 04:34:17 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_restore_context): save current value of
lastline and lastmatch in the thread struct for later restore.
* eval.c (rb_thread_save_context): restore lastline and lastmatch.
Fri Sep 7 11:27:56 2001 akira yamada <[email protected]>
* numeric.c (flo_to_s): should handle negative float value.
Fri Sep 7 09:44:44 2001 Wakou Aoyama <[email protected]>
* lib/net/telnet.rb: waitfor(): bug fix.
Fri Sep 7 07:11:34 2001 Wakou Aoyama <[email protected]>
* lib/cgi.rb: CGI#doctype(): bug fix (html4Fr).
* lib/net/telnet.rb, lib/cgi.rb: remove VERSION, RELEASE_DATE,
VERSION_CODE, RELEASE_CODE. please use REVISION.
* lib/cgi.rb: CGI#header(): bug fix.
* lib/net/telnet.rb, lib/cgi.rb: concat --> +=
Thu Sep 6 17:38:18 2001 Nobuyoshi Nakada <[email protected]>
* dir.c (dir_s_chdir): raise if environment variable HOME/LOGDIR
not set.
* dir.c (glob_helper): avoid infinite loop on a file name with
wildcard characters. (ruby-bugs#PR177)
Thu Sep 6 14:25:15 2001 Akinori MUSHA <[email protected]>
* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debug
print.
Thu Sep 6 13:56:14 2001 Akinori MUSHA <[email protected]>
* ext/digest/digest.c (rb_digest_base_s_digest,
rb_digest_base_s_hexdigest): ensure that a string is given.
Thu Sep 6 13:28:51 2001 WATANABE Hirofumi <[email protected]>
* lib/jcode.rb (_regexp_quote): fix quote handling, again.
Thu Sep 6 07:28:56 2001 Nobuyoshi Nakada <[email protected]>
* file.c (rb_find_file_ext): add const qualifiers to ext.
* intern.h (rb_find_file_ext): ditto.
Thu Sep 6 07:16:14 2001 Nobuyoshi Nakada <[email protected]>
* ext/socket/socket.c (Init_socket): remove duplicating constants.
Thu Sep 6 03:15:24 2001 Yukihiro Matsumoto <[email protected]>
* class.c (rb_include_module): should check whole ancestors to
avoid duplicate module inclusion.
Wed Sep 5 20:02:27 2001 Shin'ya Adzumi <[email protected]>
* string.c (trnext): should check backslash before updating "now"
position.
Wed Sep 5 17:41:11 2001 WATANABE Hirofumi <[email protected]>
* lib/jcode.rb (_regexp_quote): fix quote handling.
Tue Sep 4 01:03:18 2001 Yukihiro Matsumoto <[email protected]>
* re.c (Init_Regexp): to_s to be alias to inspect.
Mon Sep 3 22:46:59 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): should support 'keyword='.
Mon Sep 3 20:26:08 2001 Nobuyoshi Nakada <[email protected]>
* intern.h (rb_find_file_ext): changed from rb_find_file_noext().
Mon Sep 3 15:12:49 2001 Yukihiro Matsumoto <[email protected]>
* ruby.c (proc_options): should not adjust argc/argv if -e option
is supplied.
Mon Sep 3 14:11:17 2001 Akinori MUSHA <[email protected]>
* error.c: unbreak the build on *BSD with gcc 3.0.1 by removing
the conflicting declaration of sys_nerr for *BSD.
Sat Sep 1 18:50:07 2001 Yukihiro Matsumoto <[email protected]>
* ruby.c (proc_options): should not alter origargv[].
* ruby.c (set_arg0): long strings for $0 dumped core.
Sat Sep 1 09:50:54 2001 Nobuyoshi Nakada <[email protected]>
* ruby.c (set_arg0): prevent SEGV when val is longer than the
original arguments.
* ruby.c (ruby_process_options): initialize total length of
original arguments at first.
Sat Sep 1 14:05:28 2001 Brian F. Feldman <[email protected]>
* ruby.c (set_arg0): use setprogtitle() if it's available.
Sat Sep 1 03:49:11 2001 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_popen): accept integer flags as mode.
Fri Aug 31 19:46:05 2001 Nobuyoshi Nakada <[email protected]>
* file.c (rb_find_file_ext): extension table can be supplied from
outside. renamed.
* eval.c (rb_f_require): replace rb_find_file_noext by
rb_find_file_ext.
Fri Aug 31 19:26:55 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_provided): should also check feature without
extension.
Fri Aug 31 13:06:33 2001 Yukihiro Matsumoto <[email protected]>
* numeric.c (flo_to_s): do not rely on decimal point to be '.'
Wed Aug 29 02:18:53 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): ternary ? can be followed by newline.
Tue Aug 28 00:40:48 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_require): should check static linked libraries
before raising exception.
Fri Aug 24 15:17:40 2001 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_equal): check identiry equality first.
* string.c (rb_str_equal): ditto.
* struct.c (rb_struct_equal): ditto.
Fri Aug 24 14:38:17 2001 Usaku Nakamura <[email protected]>
* dln.c (dln_strerror): fix a bug that sometimes made null message on
win32 (Tietew <[email protected]>'s patch).
* win32/win32.c (mystrerror): ditto.
Fri Aug 24 03:15:07 2001 Yukihiro Matsumoto <[email protected]>
* numeric.c (Init_Numeric): undef Integer::new.
Fri Aug 24 00:46:44 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): NODE_WHILE should update result for each
conditional evaluation.
* eval.c (rb_eval): NODE_UNTIL should return last evaluated value
(or value given to break).
Thu Aug 23 21:59:38 2001 Nobuyoshi Nakada <[email protected]>
* enum.c (sort_by_i): fix typo.
Thu Aug 23 10:10:59 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (is_defined): should not dump core for "defined?(())".
* eval.c (umethod_bind): recv can be an instance of descender of
oklass if oklass is a Module.
Wed Aug 22 23:20:03 2001 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_hash_equal): check identiry equality first.
Wed Aug 22 19:58:59 2001 Nobuyoshi Nakada <[email protected]>
* eval.c (intersect_fds): counts intersecting fds.
* eval.c (rb_thread_schedule): only fds requested by
each thread count as select_value.
Tue Aug 21 22:28:09 2001 Nobuyoshi Nakada <[email protected]>
* file.c (group_member): should check real gid only.
* file.c (eaccess): do not cache euid, since effective euid may be
changed via Process.euid=().
* file.c (eaccess): return -1 unless every specified access mode
is permitted.
Tue Aug 21 16:09:27 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): while/until returns the value which is given
to break.
* parse.y (value_expr): using while/until/class/def as an
expression is now gives a warning, not an error.
Tue Aug 21 11:56:02 2001 Yukihiro Matsumoto <[email protected]>
* range.c (range_eqq): should compare strings based on magical
increment (using String#upto), not dictionary order.
Mon Aug 20 19:53:16 2001 WATANABE Hirofumi <[email protected]>
* ext/digest/sha2/extconf.rb: fix support for cross-compiling.
* mkconfig.rb: fix support for autoconf 2.52.
Mon Aug 20 17:24:15 2001 Yukihiro Matsumoto <[email protected]>
* enum.c (enum_sort_by): new method for Schewartzian transformed
stable sort.
Mon Aug 20 16:09:05 2001 Yukihiro Matsumoto <[email protected]>
* variable.c (mod_av_set): detect constant overriding for built-in
classes/modules.
Mon Aug 20 15:14:27 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (tokadd_escape): escaped backslashes too much.
Mon Aug 20 13:24:08 2001 Yukihiro Matsumoto <[email protected]>
* range.c (range_step): 'iter' here should be an array.
Mon Aug 20 12:43:08 2001 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): should retrieve __member__ data from
non-singleton class.
Sat Aug 18 23:11:14 2001 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_cvar_get): class variable override check added.
* variable.c (rb_cvar_set): ditto
* variable.c (rb_cvar_declare): ditto.
Fri Aug 17 12:13:48 2001 Minero Aoki <[email protected]>
* lib/net/protocol.rb: Protocol.new requires at least one arg.
* lib/net/smtp.rb: ditto.
* lib/net/pop.rb: ditto.
* lib/net/http.rb: ditto.
Fri Aug 17 00:49:51 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (parse_regx): handle backslash escaping of delimiter here.
Thu Aug 16 23:03:40 2001 Koji Arai <[email protected]>
* io.c: prevent recursive malloc calls on NEC UX/4800.
* ext/socket/socket.c: ditto.
Thu Aug 16 13:54:04 2001 Usaku Nakamura <[email protected]>
* ext/socket/socket.c (s_recvfrom): fix typo.
Thu Aug 16 09:53:28 2001 Usaku Nakamura <[email protected]>
* ext/socket/socket.c (s_recvfrom): avoid VC++6 warning.
Thu Aug 16 03:50:33 2001 Usaku Nakamura <[email protected]>
* win32/win32.c (NtCmdGlob): avoid VC++ warning.
* lib/mkmf.rb: add -I$(srcdir) to CPPFLAGS.
Wed Aug 15 04:59:15 2001 Akinori MUSHA <[email protected]>
* ext/digest/*/extconf.rb: really fix so that they build from any
directory.
Wed Aug 15 04:04:02 2001 Akinori MUSHA <[email protected]>
* ext/digest/sha2/extconf.rb: fix so that they build from any
directory.
Wed Aug 15 01:59:19 2001 Akinori MUSHA <[email protected]>
* ext/digest/defs.h: Define NO_UINT64_T instead of emitting an
error to fail.
* ext/digest/sha2/extconf.rb: Do not exit on error, and utilize
NO_UINT64_T to detect if the system has a 64bit integer type.
Tue Aug 14 21:14:07 2001 Akinori MUSHA <[email protected]>
* ext/digest/sha2/extconf.rb: do not create Makefile when no 64bit
integer type is detected.
Tue Aug 14 17:09:12 2001 Yukihiro Matsumoto <[email protected]>
* range.c (range_step): new method.
Tue Aug 14 11:49:00 2001 TOYOFUKU Chikanobu <[email protected]>
* string.c (rb_str_cmp): remove needless conditional.
Tue Aug 14 03:23:25 2001 Koji Arai <[email protected]>
* string.c (rb_str_lstrip_bang) `return Qnil' was missing.
Mon Aug 13 14:16:46 2001 Akinori MUSHA <[email protected]>
* bignum.c, marshal.c: Detypo: s/SIZEOF_ING/SIZEOF_INT/.
Sun Aug 12 15:01:58 2001 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_cat): fix buffer overflow.
* string.c (rb_str_append): nothing to append actually when `str2'
is empty.
Sat Aug 11 14:43:47 2001 Tanaka Akira <[email protected]>
* array.c (rb_inspecting_p): initialize inspect_key if it is
not initialized yet.
Fri Aug 10 22:14:37 2001 Yukihiro Matsumoto <[email protected]>
* parse.y (cond0): operands of logical operators are not treated
as conditional expresion anymore, but propagate conditional
status if used in conditionals.
Tue Aug 7 09:10:32 2001 Usaku Nakamura <[email protected]>
* win32/win32.h: fix problems with BC++ (ruby-bugs#PR161).
Mon Aug 6 23:47:46 2001 Nobuyoshi Nakada <[email protected]>
* pack.c (pack_pack): associates p/P strings once at last
(reverted to 1.26).
* string.c (rb_str_associate): associates an Array at once, not
but a String. realloc's when str_buf.
Mon Aug 6 17:01:33 2001 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_gc_mark_threads): should mark ruby_cref.
Mon Aug 6 14:31:37 2001 Usaku Nakamura <[email protected]>
* numeric.c (num_divmod): fix typo.
Mon Aug 6 03:29:03 2001 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_lstrip_bang): new method.
* string.c (rb_str_rstrip_bang): new method.
Mon Aug 6 00:35:03 2001 Guy Decoux <[email protected]>
* struct.c (rb_struct_modify): should check frozen and taint
status.
Sun Aug 5 19:28:39 2001 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_associate): should consider STR_ASSOC too.