-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3027 lines (1662 loc) · 90.1 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 Dec 22 18:01:08 1998 Yukihiro Matsumoto <[email protected]>
* experimental version 1.1d1 released.
Mon Dec 21 01:33:03 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (TMP_PROTECT): add volatile to ensure GC protection.
* string.c (rb_str_gsub_bang): calculate buffer size properly.
* parse.y (lex_get_str): needed to return Qnil at EOS.
* eval.c (find_file): check policy modified, raise exception
immediately for tainted load_path.
* hash.c (rb_f_setenv): do not depend on setenv() nor putenv().
Thu Dec 17 06:29:23 1998 Yukihiro Matsumoto <[email protected]>
* ext/tk/tkutil.c (tk_s_new): use rb_obj_instance_eval(), instead
of rb_yield_0().
* eval.c (rb_f_require): forgot to call find_file in some cases.
* eval.c (rb_f_require): `require "feature.so"' to load dynamic
libraries. old `require "feature.o"' is still OK.
* eval.c (rb_eval): yield without value dumped core.
Wed Dec 16 16:28:31 1998 Yukihiro Matsumoto <[email protected]>
* experimental version 1.1d0 (pre1.2) released.
Wed Dec 16 10:43:34 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_search): bound check before calling re_match().
Tue Dec 15 13:59:01 1998 Yukihiro Matsumoto <[email protected]>
* error.c (exc_to_s): returns class name for unset mesg.
* error.c (exc_initialize): do not initialize @mesg by "".
* parse.y (nextc): __END__ should handle CR+LF newlines.
Wed Dec 9 13:37:12 1998 MAEDA shugo <[email protected]>
* pack.c (encodes): use buffering for B-encoding.
* pack.c (pack_pack): Q-encoding by 'M'.
Tue Dec 8 14:10:00 1998 Yukihiro Matsumoto <[email protected]>
* variable.c (generic_ivar_get): any object can have instance
variables now. great improvement.
* variable.c (rb_name_class): do not set __classpath__ by default,
use __classid__ instead.
Mon Dec 7 22:08:22 1998 Yukihiro Matsumoto <[email protected]>
* ruby.h (struct RFile): IO objects can have instance variables now.
* parse.y (primary): allows `def obj::foo; .. end'.
Mon Dec 7 18:24:50 1998 WATANABE Tetsuya <[email protected]>
* ruby.c (set_arg0): $0 supprt for HP-UX.
Mon Dec 7 01:30:28 1998 WATANABE Hirofumi <[email protected]>
* dln.c (dln_strerror): better error messages on win32.
Sat Dec 5 23:27:23 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (here_document): indentable here-doc delimiter by
`<<-'. Proposed by Clemens <[email protected]>. Thanks.
Thu Dec 3 16:50:17 1998 Yukihiro Matsumoto <[email protected]>
* ext/extmk.rb.in (realclean): trouble on install.
Sun Nov 29 22:25:39 1998 Takaaki Tateishi <[email protected]>
* process.c (f_exec): check number of argument.
Wed Nov 25 13:07:12 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (yycompile): reduce known memory leak (hard to remove).
Thu Nov 26 17:27:30 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c9 released.
Wed Nov 25 03:41:21 1998 Yukihiro Matsumoto <[email protected]>
* st.c (st_init_table_with_size): round size up to prime number.
Sat Nov 21 23:27:23 1998 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_hash_aset): reduce copying key strings.
* gc.c (looks_pointerp): declare as inline function if possible.
* st.c (PTR_NOT_EQUAL): compare hash values first before calling
comparing function.
* st.c (ADD_DIRECT): save hash value in entries to reduce hash
calculation.
* string.c (rb_str_gsub_bang): avoid rb_scan_args() to speed-up.
* string.c (rb_str_sub_bang): ditto.
* string.c (rb_str_dup): do not copy additional data (STR_NO_ORIG).
Sat Nov 21 18:44:06 1998 Masaki Fukushima <[email protected]>
* time.c (time_s_now): had memory leak.
* ext/md5/md5init.c (md5_new): had memory leak.
* ext/md5/md5init.c (md5_clone): ditto.
Fri Nov 20 23:23:23 1998 Yukihiro Matsumoto <[email protected]>
* lib/delegate.rb: do not propagate hash and eql?.
Thu Nov 19 01:40:52 1998 Yukihiro Matsumoto <[email protected]>
* sample/ruby-mode.el (ruby-expr-beg): failed to find reserved
word boundary.
* eval.c (rb_eval): avoid calling `concat' method. calls
rb_ary_concat() directly for efficiency.
* eval.c (rb_eval): actual rest arguments extended arrays too much.
Wed Nov 18 14:30:24 1998 Yukihiro Matsumoto <[email protected]>
* class.c (rb_define_global_function): global functions now be
module function of the Kernel.
Wed Nov 18 10:48:09 1998 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): SEGV on large files.
Tue Nov 17 18:11:20 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c8 released.
Tue Nov 17 16:58:47 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (arg): assignment to attribute name start with capital
should be allowed.
* eval.c (thread_alloc): needed to mark terminated threads too.
Tue Nov 17 12:33:48 1998 Motoyuki Kasahara <[email protected]>
* ext/extmk.rb.in (create_makefile): Set `libdir' to `@libdir@',
Set `pkglibdir' to `$libdir/$(RUBY_INSTALL_NAME)'.
Tue Nov 17 10:30:46 1998 Yukihiro Matsumoto <[email protected]>
* sprintf.c (f_sprintf): %l%%c -> %%l%c
Tue Nov 17 01:08:50 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (ret_args): distinguish `a' and `*a' for the arguments
of yield and return.
* eval.c (rb_eval): flip3 should work like sed.
* eval.c (rb_eval): flip{2,3} now have independent state for each
scope to work fine with thread.
Mon Nov 16 23:26:29 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (primary): exec else clause if no exception raised.
Sun Nov 15 15:44:07 1998 Tadayoshi Funaba <[email protected]>
* ext/extmk.rb.in (install): bug in target.
Sat Nov 14 11:02:05 1998 Motoyuki Kasahara <[email protected]>
* Makefile.in (install): Give the argument `$(DESTDIR)' to
`instruby.rb'.
* instruby.rb: Recognize ARG[0] as `destdir'.
* instruby.rb: Give the argument `destdir' to `extmk.rb'.
* ext/extmk.rb.in: Recognize ARG[1] as `$destdir'.
* instruby.rb: Create the installation directories (bindir, libdir,
archdir, pkglibdir, archdir, and mandir) under `destdir', and
install all files under there.
* ext/extmk.rb.in: Likewise.
Sat Nov 14 10:56:55 1998 Motoyuki Kasahara <[email protected]>
* instruby.rb: Add the variable `pkglibdir'.
* instruby.rb: Set the variable `libdir' to `$(libdir)', not
`$(libdir)/$(ruby_install_name)'. `libruby.so' and `libruby.so.LIB'
are installed at `libdir'.
* instruby.rb: Set the variable `archdir' to `$(pkglibdir)/$(arch)'.
Fri Nov 13 19:43:29 1998 KIMURA Koichi <[email protected]>
* missing/nt.c (SafeFree): wrong free offset.
Thu Nov 12 20:11:53 1998 Koji Arai <[email protected]>
* sample/ruby-mode.el: wrong highlight.
* parse.y (parse_regx): newline in regexp was ignored.
Wed Nov 11 10:54:57 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (here_document): <<'FOO' should not escape anything.
* parse.y (here_document): bare << here-doc available, even though
it's deprecated.
* file.c (rb_file_s_readlink): return value should be tainted.
* ext/etc/etc.c (setup_passwd): information (eg. GCOS name) should
be tainted (modified at Perl Conference).
Tue Nov 10 00:22:11 1998 EGUCHI Osamu <[email protected]>
* configure.in: elf supprt for FreeBSD 3.x
Tue Nov 10 00:05:43 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): here document available in eval.
Mon Nov 9 17:55:19 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c7 released.
Fri Nov 6 19:25:27 1998 Takao KAWAMURA <[email protected]>
* sample/ruby-mode.el: font-lock patch.
Thu Nov 5 15:42:22 1998 Yukihiro Matsumoto <[email protected]>
* sample/README, lib/README: simple description for each file.
Wed Nov 4 18:14:19 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (assign): attribute assignment should be called as public.
Tue Nov 3 23:36:39 1998 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_dump): dumps core for negative char value.
* regex.c (re_compile_pattern): out of boundary access for empty
regexp.
Mon Nov 2 22:54:01 1998 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_aset): `str[str]' replaces first match.
Mon Nov 2 18:24:33 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (thread_create): was accessing modified status.
Sun Nov 1 01:18:52 1998 EGUCHI Osamu <[email protected]>
* gc.c (xrealloc): size 0 needs round up to 1.
Sat Oct 31 23:18:34 1998 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_split_method): negative LIMIT means number of
splitted fields are unlimited, as in perl.
* string.c (rb_str_split_method): if LIMIT is unspecified,
trailing null fields are stripped.
Sat Oct 31 04:16:14 1998 Inaba Hiroto <[email protected]>
* string.c (str_aref): regexp index SEGVed.
Fri Oct 30 14:33:47 1998 Yukihiro Matsumoto <[email protected]>
* re.c (reg_match): returns nil for unmatch.
* dir.c (dir_entries): new method.
* eval.c (block_pass): do not push block, substitute it.
Fri Oct 30 01:28:52 1998 Yukihiro Matsumoto <[email protected]>
* range.c (range_check): avoid <=> check for Fixnums.
* array.c (rb_ary_aset): accept negative index.
Wed Oct 28 22:00:54 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_match): access out of boundary fixed.
Wed Oct 28 11:37:42 1998 TAMITO <[email protected]>
* io.c (f_select): fd number comparison bug.
Tue Oct 27 23:07:11 1998 Yukihiro Matsumoto <[email protected]>
* sample/ruby-mode.el (ruby-parse-region): forgot to support %w()
style array literal.
* eval.c (rb_eval): unused block raises warning.
Mon Oct 26 09:37:53 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (dvar_asgn_push): dvar pushed too many times if
variable-in-block first appear in loops.
Sun Oct 25 22:59:27 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (set_list_bits): was using wrong offset.
Thu Oct 22 00:07:11 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_obj_method): method retrieved from tainted object
should be tainted too.
* eval.c (method_call): safe_level should be restored during
Method#call.
Wed Oct 21 14:21:06 1998 Yukihiro Matsumoto <[email protected]>
* io.c (Init_IO): new constants IO::SEEK_{SET,CUR,END}.
* io.c (rb_f_ungetc): ungetc pushes a char back into STDIN.
Mon Oct 19 11:50:00 1998 Motoyuki Kasahara <[email protected]>
* ext/extmk.rb: Load '@top_srcdir@/lib/find.rb', not
'../lib/find.rb'.
* ext/extmk.rb: Distinguish between `top_srcdir' and `topdir'.
* Makefile.in (CFLAGS): Add `-I.'.
* Makefile.in (lex.c): Give `@srcdir@/keywords' to gperf, not
`keywords'.
* instruby.rb: Use `CONFIG["bindir"]', instead of `prefix + "/bin"'.
* instruby.rb: Use `CONFIG["libdir"]', instead of `prefix + "/lib"'.
* instruby.rb Use `CONFIG["mandir"]', instead of `prefix + "/man"'.
* instruby.rb (wdir): Add the variable to preserve the current
working directory.
* instruby.rb: Chdir to wdir before install `config.h' and
`rbconfig.rb'.
Mon Oct 19 10:07:01 1998 EGUCHI Osamu <[email protected]>
* eval.c (rb_eval): reduce recursive calls to rb_eval().
Fri Oct 16 15:31:45 1998 Yukihiro Matsumoto <[email protected]>
* time.c (time_new_internal): timeval must be positive.
Thu Oct 15 13:54:48 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (arg): local variabls can be accessed within right side
expression in assignment, notably in blocks.
Wed Oct 14 00:18:33 1998 Yukihiro Matsumoto <[email protected]>
* array.c (Init_Array): Array#=== is now for equal check, not
inclusion check.
* parse.y (when_args): `when a, *b' style new syntax for array
expansion in `case'.
Tue Oct 13 14:30:32 1998 Yukihiro Matsumoto <[email protected]>
* object.c (rb_obj_untaint): taint marks can be unset.
* eval.c (rb_eval): taint propagation for embedded strings.
Mon Oct 12 13:27:15 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_call0): check stack depth more frequently.
Mon Oct 12 08:08:30 1998 Yukihiro Matsumoto <[email protected]>
* io.c (rb_p): can print even in secure mode.
Sun Oct 11 22:50:13 1998 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_const_set): taint check for modification.
* variable.c (rb_ivar_set): taint check for modification.
* string.c (rb_str_modify): taint check for modification.
* hash.c (rb_hash_modify): taint check for modification.
* array.c (rb_ary_modify): taint check for modification.
* ruby.h (FL_TAINT): taint for all objects, not only strings.
Fri Oct 9 17:01:14 1998 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): read() returns "" at immediate EOF.
* io.c (io_read): read(nil) read all until EOF.
Thu Oct 8 13:32:13 1998 Yukihiro Matsumoto <[email protected]>
* time.c (time_dump): marshal can dump Time object now.
* marshal.c (Init_marshal): rename marshal methods `_dump_to' to
`_dump', `_load_from' to `_load'.
* parse.y (rb_intern): "+=".intern generates proper symbol.
Mon Oct 5 18:31:53 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c6 released.
Fri Oct 2 14:22:33 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_search): `/\s*(--)$/ =~ "- --"' did not match,
because of wrong optimize condition.
Mon Oct 1 01:55:16 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (rb_intern): should not raise exceptions.
* parse.y (yylex): symbol like `:foo?=' should not be allowed.
* ext/extmk.rb.in: makes *.a for static link modules.
Wed Sep 30 14:13:06 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_start): supports making a subclass of the
Thread class.
Tue Sep 29 17:46:01 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_join): join is now an instance method.
Fri Sep 25 12:01:19 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): `@foo!' should be an error.
Thu Sep 24 14:55:06 1998 WATANABE Tetsuya <[email protected]>
* ext/etc/etc.c (Init_etc): wrong field definition.
Thu Sep 17 17:09:05 1998 Yukihiro Matsumoto <[email protected]>
* io.c (io_reopen): was creating FILE* for wrong fd.
Tue Sep 15 05:28:11 1998 Koji Arai <[email protected]>
* regex.c (re_compile_pattern): forgot to fixup for the pattern
like (?=(A)|(B)).
Tue Sep 15 01:06:08 1998 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_gets_internal): do not set $_ by default, only
gets/readline set the variable.
* eval.c (rb_f_load): load toplevel class is set to anonymous
module if safe_level >= 5, to encapsulate modification.
* eval.c (rb_f_load): set frame properly.
* string.c (rb_str_each_line): do not set $_.
Mon Sep 14 14:42:27 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_match): beginning and end of the string, do not
automatically match `\b'.
* string.c (scan_once): comsume at leaset on character.
* regex.c (re_search): wrong behavior for negative range.
Sat Sep 12 21:21:26 1998 Koji Arai <[email protected]>
* regex.c (re_search): range value should be maintained.
Thu Sep 10 10:55:00 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (backref_error): yyerror does not understand formats.
Tue Sep 8 18:05:33 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c5 released.
Tue Sep 8 10:03:39 1998 Yukihiro Matsumoto <[email protected]>
* string.c (str_each_line): wrong line splitting with newline at
top of the string.
* string.c: non bang methods return copied string.
* eval.c (f_END): needed to initialize frame->argc;
Fri Sep 4 11:27:40 1998 Yukihiro Matsumoto <[email protected]>
* bignum.c (bigadd): proper sign combination.
* regex.c (re_search): wrong return value for \A.
>>>>>>> 1.1.1.2.2.154
Thu Sep 3 14:08:14 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c4 released.
Tue Sep 1 10:47:16 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (slow_search): do not compare llen and blen. llen may
be longer than blen, if little contains 0xff.
* regex.c (mbctab_euc): set 0x8e as multibyte character.
* string.c (str_inspect): mask character for octal output.
Mon Aug 31 15:32:41 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_search): use calculated offset if exactn is the
first opcode in the compiled regexp.
* regex.c (bm_search): use Boyer-Moore search for simple search.
* regex.c (must_instr): wrong length check if pattern includes
byte escape by 0xff.
* regex.c (re_compile_pattern): need not to check current_mbctype.
Sat Aug 29 16:31:40 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_check_safe_str): avoid calling rb_id2name() in normal
cases to speed-up.
* eval.c (thread_raise): do not save context of terminated thread.
* regex.c (re_compile_pattern): mask \nnn over 256.
Sat Aug 29 02:09:46 1998 1998 Koji Arai <[email protected]>
* sprintf.c (f_sprintf): wrong buffer size check.
Fri Aug 28 01:57:04 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): accepts (?ix-ix) and (?ix-ix:...).
Fri Aug 28 12:25:33 1998 Hiroshi Igarashi <[email protected]>
* ruby.c (ruby_require_modules): load modules in appearing order.
Fri Aug 28 01:57:04 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): accepts (?ix-ix) and (?ix-ix:...).
Thu Aug 27 12:54:28 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c3 released.
Wed Aug 26 14:40:56 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): check whether ruby_class is properly set,
before accessing it.
* eval.c (rb_obj_instance_eval): ruby_class should be Qnil for
special objects like Fixnums.
* ext/tkutil/tkutil.c (Init_tkutil): removes calls to
rb_yield_0(). used instance_eval() instead in the tk.rb.
Wed Aug 26 11:47:00 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_match): pop non-greedy stack elements on success.
Wed Aug 26 09:25:35 1998 WATANABE Hirofumi <[email protected]>
* ruby.h: add #define environ for cygwin32.
Tue Aug 25 08:57:41 1998 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_sort_bang): temporarily freeze sorting array.
Mon Aug 24 18:46:44 1998 WATANABE Hirofumi <[email protected]>
* dln.c (dln_find_1): path check was too strict.
Mon Aug 24 15:28:11 1998 WATANABE Hirofumi <[email protected]>
* parse.y (f_arglist): opt_nl added after f_args.
Fri Aug 21 01:06:01 1998 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c: grand renaming on socket.c.
* ext/socket/socket.c (inet_aton): supply inet_aton for those
systems that do not have it.
* ext/socket/socket.c (setipaddr): use inet_aton instead of
inet_addr.
* ext/socket/socket.c (tcp_s_gethostbyname): new method: works
like Socket.gethostbyname but returning array contains ip-addrs
as octet decimal string format like "127.0.0.1".
* ext/socket/socket.c (mkhostent): return format changed to
[host, aliases, type, ipaddr..] as documented.
Wed Aug 19 00:31:09 1998 Yukihiro Matsumoto <[email protected]>
* io.c (io_ctl): forgot to place TRAP_END at right position.
Fri Aug 14 11:01:47 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (call_trace_func): save __FILE__, __LINE__ before
executing trace_func, since trace function should not corrupt
line number information.
Thu Aug 13 15:09:02 1998 Yukihiro Matsumoto <[email protected]>
* array.c (ary_s_new): was marking unallocated region on GC.
Tue Aug 11 11:57:35 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c2 released.
Mon Aug 10 14:05:30 1998 Yukihiro Matsumoto <[email protected]>
* process.c (f_system): removed fflush(stdin).
Fri Aug 7 17:44:44 1998 Yukihiro Matsumoto <[email protected]>
* error.c (err_snprintf): replace sprintf for fixed sized buffer,
with snprintf to avoid buffer over-run. For systems which does
dot provide snprintf, missing/snprintf.c added.
Wed Aug 5 00:47:35 1998 Yukihiro Matsumoto <[email protected]>
* re.c (rb_reg_search): recycle match object.
Mon Aug 3 09:17:55 1998 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_gsub_bang): do not allocate temporary string.
* string.c (rb_str_sub_bang): use inline replace.
Wed Jul 29 00:36:08 1998 Yukihiro Matsumoto <[email protected]>
* hash.c (hash_s_new): the default value can be specified.
* hash.c (hash_default): method to set the default value.
* hash.c (hash_aref): now returns the default value.
Tue Jul 28 13:03:25 1998 Yukihiro Matsumoto <[email protected]>
* array.c (ary_s_new): argument to specify initial value is added.
* array.c (ary_s_new): specifies size, not capacity.
Mon Jul 27 12:39:34 1998 Yukihiro Matsumoto <[email protected]>
* string.c (str_replace): zero fill for expansion gap.
* regex.c (mbctab_euc): set flags on for 0xA1-0xFE. suggested by
* string.c (str_inspect): consider current_mbctype.
Sun Jul 26 15:37:11 1998 Tadayoshi Funaba <[email protected]>
* array.c (ary_s_new): Array.new(1<<30) dumps core.
Fri Jul 24 13:40:19 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c1 released.
Fri Jul 24 02:10:22 1998 Yukihiro Matsumoto <[email protected]>
* marshal.c (r_bytes2): allocated buffer size was too short.
* marshal.c (w_object): saves all options, not only casefold flag.
* re.c (reg_clone): now copies options properly.
* re.c (reg_get_kcode): code number was wrong.
Thu Jul 23 13:11:32 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_attr): argument should be symbol or string.
Wed Jul 22 11:59:34 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (calculate_must_string): wrong offset added.
Wed Jul 22 11:59:59 1998 Yukihiro Matsumoto <[email protected]>
* st.c (rehash): still had a GC problem. fixed.
Tue Jul 21 13:19:30 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (gc_mark_threads): crashed on GC before thread allocation.
* st.c (rehash): GC during rehash caused SEGV.
Tue Jul 21 01:25:10 1998 Yukihiro Matsumoto <[email protected]>
* sprintf.c (f_sprintf): integer formatter totally re-written.
* sprintf.c (remove_sign_bits): support uppercase hexadecimal.
Sat Jul 18 00:14:13 1998 Yukihiro Matsumoto <[email protected]>
* sprintf.c (f_sprintf): proper sign position for %X and %O.
Fri Jul 17 14:10:20 1998 Yukihiro Matsumoto <[email protected]>
* version 1.1c0 released.
Fri Jul 17 08:01:49 1998 Tadayoshi Funaba <[email protected]>
* process.c (f_exec): Check_SafeStr() added.
* process.c (f_system): Check_SafeStr() moved before fork().
Thu Jul 16 22:58:48 1998 Yukihiro Matsumoto <[email protected]>
* string.c (scan_once): substrings to the block should not be
tainted. use reg_nth_match(), not str_substr().
* string.c (str_substr): needed to transfer taint.
Thu Jul 16 16:15:57 1998 Yukihiro Matsumoto <[email protected]>
* gc.c (xmalloc): object allocation count added to GC trigger.
* eval.c (thread_save_context): avoid marking uninitialized stack
in thread_mark. GC may be triggered by REALLOC_N().
Wed Jul 15 15:11:57 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_31.
Wed Jul 15 15:05:27 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (thread_create): exit() and abort() in threads now
forwarded to main_thread.
Tue Jul 14 14:03:47 1998 Yukihiro Matsumoto <[email protected]>
* variable.c (obj_instance_variables): list names that is not
instance variables.
* gc.c (GC_MALLOC_LIMIT): choose smaller limit value.
Mon Jul 13 12:39:38 1998 Yukihiro Matsumoto <[email protected]>
* object.c (str2cstr): should not return NULL.
Fri Jul 10 11:51:46 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (gettable): needed to add dyna_in_block() check.
Thu Jul 9 17:38:23 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_30.
Thu Jul 9 16:01:48 1998 Yukihiro Matsumoto <[email protected]>
* sprintf.c (fmt_setup): format specifier for long needed.
* sprintf.c (f_sprintf): ditto.
* numeric.c (fix2str): ditto.
* eval.c (thread_create): no more ITIMER_REAL.
* eval.c (thread_create): thread finalization needed before
aborting thread if thread_abort is set.
Wed Jul 8 18:17:33 1998 Yukihiro Matsumoto <[email protected]>
* bignum.c (big_pow): abandon power by bignum (too big).
Tue Jul 7 13:58:43 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_catch): add C level catch/throw feature.
Mon Jul 6 15:18:09 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (arg): proper return values for `||=' and `&&='.
Fri Jul 3 16:05:11 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_29.
Fri Jul 3 11:20:46 1998 Yukihiro Matsumoto <[email protected]>
* marshal.c (r_byte): byte should not extend sign bit.
* numeric.c (fix_mul): use FIX2LONG() instead of FIX2INT() for
64bit architectures.
* marshal.c (r_bytes): remove weird casting bwetween pointer and int.
* process.c (proc_setsid): new method Process#setsid().
Thu Jul 2 12:49:21 1998 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): remove `write_bignum' label for 64bit
architectures.
* marshal.c (r_bytes): needs int, not long.
Wed Jul 1 14:21:06 1998 Yukihiro Matsumoto <[email protected]>
* numeric.c (flo_plus): should not allow addition with strings.
Wed Jul 1 13:09:01 1998 Keiju ISHITSUKA <[email protected]>
* numeric.c (num_uminus): wrong coerce direction.
Tue Jun 30 10:13:44 1998 Yukihiro Matsumoto <[email protected]>
* io.c (f_p): accepts arbitrary number of arguments.
* eval.c (rb_yield_0): there's some case that iterator_p() returns
true even if the_block was not set. check added.
Tue Jun 30 01:05:20 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (BEGIN_CALLARGS): adjust the_block before evaluating the
receiver's value and the arguments.
Fri Jun 26 18:02:50 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_28.
Fri Jun 26 11:01:26 1998 WATANABE Hirofumi <[email protected]>
* string.c (str_aset_method): needed to convert to string.
Thu Jun 25 02:05:50 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_search): optimize for `.*' at beginning of the
pattern.
* regex.c (re_search): optimize for character class repeat at
beginning of the pattern.
* regex.c (re_compile_pattern): detect optimization potential for
the compiled patterns.
Thu Jun 25 00:02:26 1998 WATANABE Hirofumi <[email protected]>
* re.c (reg_s_new): flag value was wrong.
Wed Jun 24 23:45:06 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (re_search): wrong anchor handling for reverse search.
Wed Jun 24 02:18:57 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (mlhs): `((a,b)),c = [[1,2]],3' assigns a=1,b=2,c=3.
Tue Jun 23 11:46:16 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): `&&=' and `||=' added.
Sat Jun 20 02:53:50 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (assignable): nesting local variables should have higher
priority than normal local variables for assignment too.
Fri Jun 19 18:28:19 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_27.
Fri Jun 19 14:34:49 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (assign): support hack for nested multiple assignment.
* parse.y (mlhs): nested multiple assignment.
* eval.c (rb_eval): in-block variables now honors static scope.
* configure.in: RSHIFT check moved to configure.
Thu Jun 18 16:46:04 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_26.
Thu Jun 18 13:37:19 1998 Yukihiro Matsumoto <[email protected]>
* file.c (file_s_ftype): uses lstat(2) instead of stat(2).
* dir.c (dir_s_glob): there can be buffer overrun, check added.
* eval.c (f_binding): handles in-block variables declared after
binding's generation.
* numeric.c (flo_floor): floor, ceil, round added to Float.
Wed Jun 17 11:20:00 1998 Yukihiro Matsumoto <[email protected]>
* parse.y (gettable): nesting local variables should have higher
priority than normal local variables.
Tue Jun 16 12:30:46 1998 Yukihiro Matsumoto <[email protected]>
* bignum.c (str2inum): handles `+ddd'.
* struct.c (make_struct): name parameter can be nil for unnamed
structures.
Mon Jun 15 16:30:10 1998 Yukihiro Matsumoto <[email protected]>
* object.c (class_s_inherited): prohibiting to make subclass of
class Class.
* object.c (module_s_new): support for making subclass of Module.
* parse.y (yycompile): clear eval_tree before compiling.
Fri Jun 12 17:58:18 1998 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): write back the_dyna_var into the block.
Thu Jun 11 18:19:18 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_25.
* eval.c (dvar_add_compiling): register dyna_var at compile time.
* regex.c (re_compile_pattern): RE_DUP_MAX iteration is too big.
Wed Jun 10 15:12:04 1998 Yukihiro Matsumoto <[email protected]>
* io.c (io_eof): do not block other threads.
* signal.c (trap): reserve SIGALRM for thread.
* eval.c (thread_create): use ITIMER_REAL also to avoid system
call blocking.
* io.c (f_syscall): add TRAP_BEG, TRAP_END around system calls.
* io.c (io_ctl): add TRAP_BEG, TRAP_END around system calls.
* enum.c (enum_collect): did not collect false values.
* array.c (ary_new2): forgot to initialize capa field.
Tue Jun 9 18:36:15 1998 WATANABE Hirofumi <[email protected]>
* string.c (str_split_method): split dumped core for "\xff".
Tue Jun 9 16:22:12 1998 Yukihiro Matsumoto <[email protected]>
* experimental release 1.1b9_24.
Tue Jun 9 16:04:07 1998 WATANABE Hirofumi <[email protected]>
* ext/kconv/kconv.c (kconv_guess): more precise decision for EUC,
using jless algorithm (3 sequential EUC hiragana characters).
Tue Jun 9 15:12:44 1998 Yukihiro Matsumoto <[email protected]>
* ext/kconv/kconv.c (kconv_guess): wrong guess for EUC as SJIS in
some cases (0xe0 - 0xef).
* gc.c (xmalloc): insert size check for big (negative in signed)
allocation size.
Tue Jun 9 02:54:51 1998 Yukihiro Matsumoto <[email protected]>
* lib/parsedate.rb: wday moved to the last in the return values.
Mon Jun 8 10:40:16 1998 Yukihiro Matsumoto <[email protected]>
* string.c (str_split_method): split dumped core for "\0".
Sat Jun 6 22:50:52 1998 Yukihiro Matsumoto <[email protected]>
* regex.c (calculate_must_string): wrong condition for
{start,stop}_nowidth.
* regex.c (re_match): various features imported from GNU regex.c
0.12, such as nested grouping, avoiding infinite loop with empty
match, etc.
* regex.c (register_info_type): now use union.
* regex.c (re_search): more precise anchor(^) check.
Wed Jun 3 18:07:54 1998 Yukihiro Matsumoto <[email protected]>
* re.c (reg_raise): check rb_in_compile, not rb_in_eval.