-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
15477 lines (8570 loc) · 457 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
Thu Apr 18 17:01:43 2002 Tanaka Akira <[email protected]>
* re.c (rb_reg_to_s): new function for Regexp#to_s.
Wed Apr 17 23:55:34 2002 Akinori MUSHA <[email protected]>
* ext/Setup*, ext/bigfloat/*: Back out the import of BigFloat in
favor of its forthcoming successor, BigDecimal.
Wed Apr 17 16:53:33 2002 Yukihiro Matsumoto <[email protected]>
* re.c (rb_reg_expr_str): should treat backslash specially in
escaping.
Wed Apr 17 08:16:41 2002 Michal Rokos <[email protected]>
* io.c: complete off_t handling; missing argument for
fptr_finalize(); polished rb_scan_args call.
Wed Apr 17 00:01:59 2002 Michal Rokos <[email protected]>
* dir.c: wrap multi-statment macro by do { } while (0)
* eval.c, numeric,c, sprintf.c, util.c: ditto.
Tue Apr 16 08:59:50 2002 Nobuyoshi Nakada <[email protected]>
* eval.c (assign): convert mrhs to mvalue.
Mon Apr 15 18:12:57 2002 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_eq): check `y == x' if y is neither Fixnum,
Bignum, nor Float.
Mon Apr 15 09:27:31 2002 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_unpack): should treat 'U' in character unit, not in
byte unit.
* error.c (exc_initialize): should clear backtrace information.
Sat Apr 13 23:42:43 2002 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_fptr_cleanup): should close IO created by IO.new(fd).
* rubyio.h: remove FMODE_FDOPEN
Fri Apr 12 12:54:04 2002 NAKAMURA Usaku <[email protected]>
* win32/Makefile.sub: use missing/acosh.c.
* win32/config.h.in: define HAVE_COSH, HAVE_SINH, and HAVE_TANH.
Fri Apr 12 02:58:55 2002 Koji Arai <[email protected]>
* struct.c (rb_struct_select): fix typo.
Fri Apr 12 00:34:17 2002 Nobuyoshi Nakada <[email protected]>
* MANIFEST (missing/acosh.c): added.
* Makefile.in (missing/acosh.c): ditto.
* Makefile.in (missing/fileblocks.c): ditto.
* configure.in (AC_REPLACE_FUNCS): check acosh() on behalf of
inverse hyperbolic functions, asinh() and atanh().
* missing/acosh.c: added for acosh(), asinh() and atanh().
Thu Apr 11 20:01:44 2002 Masahiro Tomita <[email protected]>
* io.c (io_write): check error if written data is less than
specified size to detect EPIPE.
Thu Apr 11 19:10:37 2002 WATANABE Hirofumi <[email protected]>
* io.c (remain_size): IO#read returns "" if file.size == 0.
* random.c (rand_init): add check for initstate(3).
* configure.in: ditto.
Thu Apr 11 09:31:19 2002 Takaaki Tateishi <[email protected]>
* ext/dl/ptr.c: raise() -> rb_raise(). (Thanks Tetsuya Watanabe)
* ext/dl/sym.c: ditto.
Thu Apr 11 07:57:48 2002 Michal Rokos <[email protected]>
* eval.c (assign): ruby_verbose should be surrounded by RTEST().
* object.c (rb_str2cstr): ditto.
* parse.y (void_expr): ditto.
* parse.y (void_stmts): ditto.
* variable.c (rb_ivar_get): ditto.
* variable.c (rb_cvar_set): ditto.
* variable.c (rb_cvar_get): ditto.
Thu Apr 11 07:02:31 2002 Takaaki Tateishi <[email protected]>
* ext/dl: Add dl.txt instead of README and README.html.
Thu Apr 11 01:55:52 2002 Wakou Aoyama <[email protected]>
* lib/cgi/session.rb: support for multipart form.
Wed Apr 10 18:42:23 2002 Tachino Nobuhiro <[email protected]>
* dir.c (glob_helper): should have proceed link when link->path
was non existing symbolic link.
Wed Apr 10 17:30:19 2002 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_obj_remove_instance_variable): raise NameError if
specified instance variable is not defined.
* variable.c (generic_ivar_remove): modified to check ivar
existence.
Wed Apr 10 14:16:45 2002 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-font-lock-keywords): fontify symbols for
unary operators and aset.
Tue Apr 9 13:40:31 2002 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (try_link0): need expand macro in command, sync with
ext/extmk.rb.in.
* lib/mkmf.rb (try_cpp): ditto.
* lib/mkmf.rb (egrep_cpp): ditto.
Tue Apr 9 12:44:59 2002 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (check_modifiable): performance
improvement. avoid calling rb_str_modify() twice.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/stringio/stringio.c (strio_putc): ditto.
* ext/stringio/stringio.c (strio_write): ditto, and use
rb_str_cat() as possible.
Tue Apr 9 05:17:48 2002 Akinori MUSHA <[email protected]>
* re.c (match_select): fix index references and make
MatchData#select actually work.
Tue Apr 9 00:20:52 2002 Yukihiro Matsumoto <[email protected]>
* file.c (rb_file_s_extname): new method based on the proposal
(and patch) from Mike Hall. [new]
Mon Apr 8 04:50:51 2002 Nobuyoshi Nakada <[email protected]>
* eval.c (error_handle): default to 1 unless status is set.
* eval.c (ruby_options): guard error_handle() with PROT_NONE.
* eval.c (ruby_stop): ditto.
Mon Apr 8 01:22:24 2002 Yukihiro Matsumoto <[email protected]>
* math.c (math_acosh): added. [new]
* math.c (math_asinh): ditto.
* math.c (math_atanh): ditto.
* struct.c (rb_struct_each_pair): method added. [new]
Sat Apr 6 02:04:49 2002 Guy Decoux <[email protected]>
* class.c (rb_singleton_class): wrong condition; was creating
unnecessary singleton class.
Sat Apr 6 01:09:41 2002 Yukihiro Matsumoto <[email protected]>
* sprintf.c (remove_sign_bits): simplifies the condition.
* bignum.c (get2comp): calculate proper carry over.
Fri Apr 5 05:07:28 2002 Takaaki Tateishi <[email protected]>
* ext/dl: Add dl/struct.rb.
Thu Apr 4 14:08:52 2002 Takaaki Tateishi <[email protected]>
* ext/dl/lib/dl/import.rb: Get rid of ineffective
encoding/decoding procedures.
Thu Apr 4 01:08:23 2002 Yukihiro Matsumoto <[email protected]>
* numeric.c (int_step): step may be a float less than 1.
Wed Apr 3 20:42:34 2002 Takaaki Tateishi <[email protected]>
* ext/dl: Merge Nakada's patch.
* ext/dl/dl.h: define StringValuePtr for ruby-1.6.
Wed Apr 3 15:37:24 2002 Takaaki Tateishi <[email protected]>
* ext/dl: Add dl/types.rb.
Wed Apr 3 01:54:10 2002 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb.in (enable_config): follow lib/mkmf.rb.
Tue Apr 2 19:59:13 2002 Takaaki Tateishi <[email protected]>
* ext/dl: Merge from rough.
Tue Apr 2 15:17:54 2002 Yukihiro Matsumoto <[email protected]>
* Makefile.in (CPPFLAGS): remove @includedir@.
* lib/mkmf.rb (create_makefile): ditto.
* ext/extmk.rb.in (create_makefile): ditto.
Tue Apr 2 15:09:05 2002 WATANABE Hirofumi <[email protected]>
* ext/socket/socket.c (sock_addrinfo): should clear addrinfo hints.
Mon Apr 1 23:48:12 2002 Takaaki Tateishi <[email protected]>
* lib/mkmf.rb: install any files using $INSTALLFILES.
(see also [ruby-dev:16683])
Mon Apr 1 17:25:50 2002 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_fptr_cleanup): need flush even when io will not be
closed.
* io.c (rb_io_initialize): was calling wrong function
rb_io_mode_flags().
Mon Apr 1 16:52:00 2002 Nobuyoshi Nakada <[email protected]>
* ext/sdbm/init.c (each_pair): moved prototype before the
definition.
* ext/racc/cparse/cparse.c (call_scaniter): ditto.
Mon Apr 1 15:11:40 2002 NAKAMURA Usaku <[email protected]>
* ext/racc/cparse/cparse.c: prototype; call_scaniter().
* ext/sdbm/init.c: prototype; each_pair().
* ext/tcltklib/tcltklib.c: prototypes; _timer_for_tcl() and ip_ruby(),
Nobu's patch at [ruby-dev:14483].
Mon Apr 1 10:56:40 2002 Yukihiro Matsumoto <[email protected]>
* re.c (match_setter): it's OK to assign nil to $~.
Mon Apr 1 03:55:46 2002 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_fptr_cleanup): do not close IO created by for_fd().
* io.c (rb_io_initialize): mark IO created by for_fd
* ext/socket/socket.c (bsock_s_for_fd): ditto.
Fri Mar 29 20:21:58 2002 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_makefile): default FLAGS to empty strings.
Fri Mar 29 16:36:52 2002 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (arg_config): should use Shellwords::shellwords like
ext/extmk.rb.in.
* lib/mkmf.rb (enable_config): default had priority over command
line options and configure_args.
* lib/mkmf.rb: support autoconf 2.53 style variables from
environment.
* lib/mkmf.rb: add directory options.
Fri Mar 29 15:49:29 2002 Usaku Nakamura <[email protected]>
* win32/README.win32: follow recent changes.
Fri Mar 29 14:44:05 2002 Yukihiro Matsumoto <[email protected]>
* io.c (io_fflush): DRY patch from /Christoph applied.
Thu Mar 28 18:58:13 2002 Usaku Nakamura <[email protected]>
* win32/Makefile.sub (config.status): reflect user defined $CC in
config.status.
Thu Mar 28 18:03:51 2002 Minero Aoki <[email protected]>
* ext/strscan/strscan.c: add taint check.
* ext/strscan/strscan.c: #getch/#get_byte should set regexp
registers.
* ext/strscan/strscan.c: remove useless #include directive.
* ext/strscan/strscan.c: refactor struct strscanner.
Thu Mar 28 14:51:38 2002 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (sock_addrinfo): should specify socktype
from outside.
Wed Mar 27 17:04:30 2002 Yukihiro Matsumoto <[email protected]>
* io.c (argf_binmode): should call next_argv() to initialize ARGF.
* io.c (argf_filename): ditto.
* io.c (argf_file): ditto.
Wed Mar 27 14:47:32 2002 WATANABE Hirofumi <[email protected]>
* io.c (READ_DATA_PENDING): configure.in has supported for uClibc,
so remove uClibc stuff.
Wed Mar 27 13:14:43 2002 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_sysseek): new method based on a patch from Aristarkh
A Zagorodnikov <[email protected]>. [new]
* io.c (READ_DATA_PENDING): use !feof(fp) for default behavior.
Tue Mar 26 20:28:50 2002 Minero Aoki <[email protected]>
* lib/net/http.rb: HTTP.get accepts URI.
* lib/net/http.rb: new method HTTP.get_uri.
* lib/net/http.rb: add some HTTP 1.1 response codes.
Tue Mar 26 20:25:28 2002 Minero Aoki <[email protected]>
* doc/net/protocol.rd.ja, smtp.rd.ja, pop.rd.ja: removed.
* MANIFEST: remove doc/net/* entries.
Tue Mar 26 18:45:15 2002 WATANABE Hirofumi <[email protected]>
* configure.in (FILE_READPTR): check bufread instead of bufend
for uClibc.
* ext/extmk.rb.in (arg_config): should use Shellwords::shellwords.
Tue Mar 26 01:56:33 2002 Yukihiro Matsumoto <[email protected]>
* parse.y (primary): while/until statement modifiers to "begin"
statement now work as "do .. while" even when begin statement
has "rescue" or "ensure" [new].
* parse.y (bodystmt): rescue/ensure is allowed at every bodies,
i.e. method bodies, begin bodies, class bodies[new], and module
bodies[new].
Mon Mar 25 22:10:04 2002 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (sock_addrinfo): should specify ai_socktype
for getaddrinfo hints.
Mon Mar 25 17:18:48 2002 Nobuyoshi Nakada <[email protected]>
* dir.c (rb_push_glob): local variable 'maxnest' was
uninitialized.
Mon Mar 25 16:53:30 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_abort): embed aborting message into exception
object [new].
* eval.c (terminate_process): utility function for exit and abort.
Tue Mar 26 14:04:47 2002 okabe katsuyuki <[email protected]>
* win32/mkexports.rb: support VC++.NET.
Tue Mar 26 14:00:17 2002 Akinori MUSHA <[email protected]>
* ext/bigfloat/bigfloat.c: Fix the initializer's function name
according to the new library name. (pointed out by nobu)
Tue Mar 26 11:12:01 2002 Minero Aoki <[email protected]>
* lib/fileutils.rb: new file.
Tue Mar 26 03:23:50 2002 Tanaka Akira <[email protected]>
* lib/pp.rb (pp): return nil like p.
Tue Mar 26 01:48:01 2002 Akinori MUSHA <[email protected]>
* ext/bigfloat/extconf.rb: Downcase the library name. (BigFloat.so
-> bigfloat.so)
* ext/bigfloat/bigfloat.c (BigFloat_inspect): Alter the inspect
format not to look like an array. (pointed out by akr)
* ext/bigfloat/bigfloat.c (BigFloat_hash): Implement BigFloat#hash.
* ext/bigfloat/bigfloat.c (BigFloat_dump, BigFloat_load):
Support marshaling.
Tue Mar 26 00:38:11 2002 Tanaka Akira <[email protected]>
* configure.in (FILE_READPTR): check _p for 4.4BSD.
Mon Mar 25 23:39:25 2002 Nobuyoshi Nakada <[email protected]>
* configure.in (FILE_READPTR): new. for IO#gets improvement.
* io.c (READ_DATA_PENDING_PTR): ditto.
* io.c (remain_size): separated from read_all().
* io.c (read_all): argument chagend.
* io.c (appendline): new. get a line and append to string.
* io.c (swallow): new. swallow continuous line delimiters.
* io.c (rb_io_getline_fast): add delimiter argument.
* io.c (rb_io_getline): performance improvement.
Mon Mar 25 19:30:25 2002 WATANABE Hirofumi <[email protected]>
* ext/extmk.rb.in (arg_config): get rid of single quotes
for autoconf 2.53.
Mon Mar 25 17:49:41 2002 Nobuyoshi Nakada <[email protected]>
* regex.c (mbc_startpos_func): VC6 seems to be unable to
understand forward declaration for static variables.
* dir.c (rb_push_glob): local variable 'maxnest' was
uninitialized.
Mon Mar 25 13:24:20 2002 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (bsock_do_not_rev_lookup_set): should not be
allowed when $SAFE > 3.
* eval.c (rb_thread_ready): THREAD_TO_KILL threads should not turn
into THREAD_RUNNABLE on wakeup.
* eval.c (rb_thread_list): THREAD_TO_KILL threads should be in the
list.
* eval.c (thgroup_list): ditto; by moving gid clearance from
rb_thread_cleanup().
Mon Mar 25 11:06:19 2002 Nobuyoshi Nakada <[email protected]>
* dln.c (dln_argv0): unused unless USE_DLN_A_OUT.
* regex.c (mbc_startpos_func): should be static.
Sun Mar 24 12:19:09 2002 Koji Arai <[email protected]>
* dir.c (fnmatch): "*/bar" (with FNM_PATHNAME flag) does not
match "foo/bar".
Sun Mar 24 00:46:05 2002 WATANABE Hirofumi <[email protected]>
* util.c (push_element): avoid warning for djgpp.
Sat Mar 23 01:50:30 2002 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): files on /proc filesystem with zero stat size,
may have contents.
Fri Mar 22 18:07:29 2002 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (tcp_s_gethostbyname): refactored.
* ext/socket/socket.c (sock_s_gethostbyname): ditto.
Fri Mar 22 16:46:54 2002 Minero Aoki <[email protected]>
* ext/extmk.rb.in: replace mkdir with mkpath to compile racc/cparse.
Fri Mar 22 16:22:55 2002 Yukihiro Matsumoto <[email protected]>
* the VMS support patch submitted by Akiyoshi, Masamichi
<[email protected]> is merged.
Fri Mar 22 16:27:24 2002 Minero Aoki <[email protected]>
* lib/racc/parser.rb: new file.
* ext/racc/MANIFEST, cparse.c, depend, extconf.rb: new files.
* lib/README: add racc/parser.rb.
* ext/Setup*: add racc/cparse.
Fri Mar 22 15:04:03 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (exec_under): changing ruby_class is OK, but should not
alter cbase.
* eval.c (yield_under_i): ditto.
Fri Mar 22 15:44:38 2002 Minero Aoki <[email protected]>
* ext/strscan/MANIFEST, strscan.c, depend, extconf.rb: new files.
* ext/Setup*: add strscan entry.
Fri Mar 22 14:32:14 2002 Minero Aoki <[email protected]>
* lib/net/protocol.rb: Protocol#start should return self.
Fri Mar 22 14:14:21 2002 Tanaka Akira <[email protected]>
* lib/resolv.rb: fix arguments to create exceptions.
Patch from [email protected]. (ruby-bugs:PR#278)
Fri Mar 22 13:51:11 2002 Akinori MUSHA <[email protected]>
* ext/bigfloat/.cvsignore, ext/bigfloat/MANIFEST: BigFloat 1.1.8
has been imported. Add .cvsignore and MANIFEST.
Fri Mar 22 04:07:55 2002 Koji Arai <[email protected]>
* sprintf.c (rb_f_printf): discard meaningless prefix ".." for '%u'.
Thu Mar 21 01:11:37 2002 Usaku Nakamura <[email protected]>
* win32/Makefile.sub (config.status): fix install path (prefix).
Thu Mar 21 01:03:05 2002 Nobuyoshi Nakada <[email protected]>
* ext/configsub.rb: latest autoconf style support.
Wed Mar 20 22:16:25 2002 Usaku Nakamura <[email protected]>
* mkconfig.rb: close duplicated $stdout before renaming rbconfig.rb.
Wed Mar 20 21:54:17 2002 Nobuyoshi Nakada <[email protected]>
* win32/Makefile.sub: made variables configurable.
* win32/Makefile.sub (config.h): updates RUBY_PLATFORM from
Makefile.
* win32/Makefile.sub (config.status): ditto. and use recent
autoconf format.
* win32/Makefile.sub (clean): separate ext and local clean up.
* win32/Makefile.sub (distclean): ditto.
* win32/config.status.in: no longer used.
Wed Mar 20 20:12:35 2002 Nobuyoshi Nakada <[email protected]>
* variable.c (rb_const_list): a temporary table must be freed.
Wed Mar 20 19:44:09 2002 Tanaka Akira <[email protected]>
* mkconfig.rb: don't touch rbconfig.rb if there is a trouble.
Wed Mar 20 16:05:37 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (is_defined): should check receiver only once.
* eval.c (is_defined): should handle NODE_NEWLINE.
Wed Mar 20 11:29:25 2002 Aristarkh A Zagorodnikov <[email protected]>
* file.c (rb_file_s_expand_path): memory leak fixed.
Wed Mar 20 00:36:43 2002 Akinori MUSHA <[email protected]>
* util.c (ruby_getcwd): the content of buf is uncertain and must
not be printed when getcwd(buf, size) has failed.
Mon Mar 18 22:19:52 2002 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (check_modifiable): wrong declaration.
Mon Mar 18 18:04:05 2002 Nobuyoshi Nakada <[email protected]>
* ext/digest: add depend file.
* ext/digest/md5: ditto.
* ext/digest/rmd160: ditto.
* ext/digest/sha1: ditto.
* ext/digest/sha2: ditto.
* ext/iconv/MANIFEST: ditto.
* ext/stringio/MANIFEST: ditto.
* ext/syslog: ditto.
Mon Mar 18 17:18:06 2002 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_f_abort): should not bypass cleanup.
* ext/stringio/stringio.c (check_modifiable): void function.
Mon Mar 18 12:52:01 2002 WATANABE Hirofumi <[email protected]>
* ext/iconv/extconf.rb: workaround for GNU libiconv.
Mon Mar 18 10:55:03 2002 Nobuyoshi Nakada <[email protected]>
* parse.y (parse_string): part of multi-byte sequence must not
match to paren.
* parse.y (parse_qstring): ditto.
* parse.y (parse_quotedwords): ditto.
* parse.y (str_extend): handle multi-byte characters.
Mon Mar 18 10:31:20 2002 Nobuyoshi Nakada <[email protected]>
* enum.c (enum_find): catch a value before recycle.
* enum.c (enum_all): ditto.
* enum.c (enum_any): ditto.
* enum.c (enum_min): ditto.
* enum.c (enum_max): ditto.
Sun Mar 17 20:08:04 2002 Nobuyoshi Nakada <[email protected]>
* ext/iconv/depend: added.
* ext/stringio/depend: added.
Sat Mar 16 22:43:53 2002 WATANABE Hirofumi <[email protected]>
* missing/fileblocks.c: add for autoconf.
Sat Mar 16 15:30:40 2002 Yukihiro Matsumoto <[email protected]>
* re.c (rb_reg_search): should clear last_match if pos is out of
string range.
* string.c (rb_str_index_m): ditto.
* string.c (rb_str_rindex): ditto.
Sat Mar 16 09:04:58 2002 Koji Arai <[email protected]>
* enum.c (enum_inject): use the first iterated element as the
initial value when omitted.
* enum.c (inject_i): ditto.
* enum.c (Init_Enumerable): Enumerable#inject now takes variable
count arguments.
Fri Mar 15 19:47:31 2002 Nobuyoshi Nakada <[email protected]>
* win32/win32.c (StartSockets): remove duplicated lines.
Fri Mar 15 17:44:08 2002 Usaku Nakamura <[email protected]>
* bignum.c, intern.h (rb_ull2big, rb_ll2big, rb_ull2inum, rb_ll2inum,
big2ull, rb_big2ull, rb_big2ll): use LONG_LONG macro instead of
long long.
* numeric.c, intern.h, ruby.h (rb_num2ll, rb_num2ull): ditto.
* ruby.h: use _I64_MAX and _I64_MIN if they are defined (for VC++).
Fri Mar 15 14:02:43 2002 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c: fixed document, Iconv#new is no longer an
iterator. thanks to Tanaka Akira <[email protected]>.
Thu Mar 14 22:17:45 2002 Nobuyoshi Nakada <[email protected]>
* ext/iconv: imported.
Thu Mar 14 16:42:37 2002 Yukihiro Matsumoto <[email protected]>
* class.c (rb_define_class): should handle autoload.
* class.c (rb_define_module): ditto.
Thu Mar 14 16:18:12 2002 WATANABE Hirofumi <[email protected]>
* configure.in: autoconf 2.53 support. use AC_LIBOBJ.
Thu Mar 14 00:29:12 2002 Yukihiro Matsumoto <[email protected]>
* re.c (rb_reg_match): should clear $~ if operand is nil.
* re.c (rb_reg_match2): ditto.
Thu Mar 14 12:32:59 2002 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c: fixed frozen string bug. ungetc no
longer raises on readonly stream unless modifies actually.
Thu Mar 14 08:57:41 2002 Nobuyoshi Nakada <[email protected]>
* dir.c (rb_push_glob): avoid SEGV when a block given.
Thu Mar 14 00:16:02 2002 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_subpat_set): must make str independent after
rb_reg_search() matched.
Wed Mar 13 19:05:15 2002 Akinori MUSHA <[email protected]>
* dir.c: FNM_PERIOD is obsoleted and FNM_DOTMATCH is introduced
instead, which has the opposite meaning of FNM_PERIOD.
* dir.c: Dir::glob now accepts optional FNM_* flags via the second
argument, whereas Dir::[] doesn't.
Wed Mar 13 18:36:55 2002 Akinori MUSHA <[email protected]>
* lib/getopts.rb: single_options can be nil[*], and is not not
optional. ([*]Pointed out by gotoken)
Wed Mar 13 17:23:46 2002 Yukihiro Matsumoto <[email protected]>
* configure: merge Jonathan Baker's large file support patch
[ruby-talk:35316], with read_all patch in [ruby-talk:35470].
Wed Mar 13 04:06:48 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_abort): optional message argument that be printed
on termination.
Tue Mar 12 17:12:06 2002 Tanaka Akira <[email protected]>
* lib/resolv.rb: don't complete domains for absolute FQNs.
Mon Mar 11 23:08:48 2002 Tanaka Akira <[email protected]>
* lib/tsort.rb: new file.
Mon Mar 11 21:03:37 2002 Nobuyoshi Nakada <[email protected]>
* ext/stringio: new.
Mon Mar 11 18:03:37 2002 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): '\0111' should be '\011' plus '1',
since octal literals are formed by three digits at most.
Mon Mar 11 14:44:38 2002 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): module inclusion using extend() should
also be detected.
* eval.c (rb_eval_cmd): cbase should not be NULL; it should be
either ruby_wrapper or Object.
Sun Mar 10 02:18:22 2002 Koji Arai <[email protected]>
* enum.c (enum_each_with_index): should return self.
* process.c (proc_setpgrp): should return value for non-void function.
* process.c (proc_getpgid): should raise exception if getpgid() return -1.
* string.c (rb_str_ljust): should return a duplicated string.
* string.c (rb_str_rjust): ditto.
* string.c (rb_str_center): ditto.
Sat Mar 9 08:45:58 2002 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb (have_struct_member): don't print checked
result.
Fri Mar 8 12:19:15 2002 Tanaka Akira <[email protected]>
* lib/resolv.rb: use its own thread group for background threads.
Fri Mar 8 02:21:32 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (cvar_cbase): utility function to find innermost non
singleton cbase.
* eval.c (is_defined): adopt new cvar behavior.
* eval.c (rb_eval): ditto.
* eval.c (assign): ditto.
Thu Mar 7 20:08:25 2002 Nobuyoshi Nakada <[email protected]>
* gc.c (rb_source_filename): added. holds unique strings for file
names with GC space.
* gc.c (rb_gc_mark): mark source file name.
* gc.c (gc_sweep): ditto.
* gc.c (Init_GC): initialize source file name table.
* intern.h (rb_source_filename): added.
* eval.c (rb_eval_string): use rb_source_filename().
* parse.y (yycompile): ditto.
* ruby.c (proc_options): ditto.
* ruby.c (load_file): ditto.
* ruby.c (ruby_script): ditto.
* ruby.c (ruby_prog_init): ditto.
Wed Mar 6 17:58:08 2002 WATANABE Hirofumi <[email protected]>
* dln.c (dln_load): use LoadLibrary instead of LoadLibraryEx.
Wed Mar 6 16:50:37 2002 Yukihiro Matsumoto <[email protected]>
* class.c (rb_mod_clone): should not call rb_obj_clone(), since
Module does not provide "allocate".
* class.c (rb_singleton_class): should create new singleton class
if obj is a class or module and attached object is different,
which means metaclass of singleton class is sought.
* time.c (time_s_alloc): now follows allocation framework.
Tue Mar 5 05:56:29 2002 Akinori MUSHA <[email protected]>
* lib/getopts.rb: Rewrite to fix some bugs and complete features.
- Accept options with the colon in the first argument;
getopts("a:bcd:") is equivalent to getopts("bc", "a:", "d:").
- Do not discard the argument that caused an error.
- Do not discard '-', which commonly stands for stdin or stdout.
- Allow specifying a long option with a value using '='.
(command --long-option=value)
- Stop reading options when it meets a non-option argument.
Mon Mar 4 13:19:18 2002 Akinori MUSHA <[email protected]>
* ext/extmk.rb.in (dir_config): Sync with mkmf.rb: Fix a bug where
--with-xx-{include,lib} is ignored when --with-xx-dir is
specified.
Mon Mar 4 00:09:55 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): should initialize outer class variables from
methods in singleton class definitions.
* eval.c (assign): ditto.
Fri Mar 1 11:29:10 2002 WATANABE Hirofumi <[email protected]>
* ext/socket/{addinfo.h,getaddrinfo.c} (gai_strerror): add const
qualifier only for uClibc.
Fri Mar 1 11:22:51 2002 Amos Gouaux <[email protected]>
* lib/net/imap.rb: added document.
* lib/net/imap.rb (getquotaroot): new method.
* lib/net/imap.rb (setacl): remove the rights if the rights
parameter is nil.
* lib/net/imap.rb (getacl): return an array of MailboxACLItem.
Fri Mar 1 06:25:49 2002 Tanaka Akira <[email protected]>
* ext/socket/extconf.rb (have_struct_member): new method.
check msg_control and msg_accrights in struct msghdr. check
sys/uio.h.
* ext/socket/socket.c: include sys/uio.h if available.
(thread_read_select): new function.
(unix_send_io): ditto.
(unix_recv_io): ditto.
(unix_s_socketpair): ditto.
(Init_socket): define UNIXSocket#send_io, UNIXSocket#recv_io,
UNIXSocket.socketpair and UNIXSocket.pair.
* dln.c (dln_load): fix typo.
Wed Feb 27 16:30:50 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_mod_include): load modules in argument order.
* st.c (st_init_table_with_size): num_bins should be prime numbers
(no decrement).
* st.c (rehash): ditto.
Wed Feb 27 13:18:49 2002 WATANABE Hirofumi <[email protected]>
* io.c (READ_DATA_PENDING): uClibc support.
* random.c (rand_init): ditto.
* ext/socket/{addinfo.h,getaddrinfo.c} (gai_strerror): ditto.
Wed Feb 27 07:05:17 2002 Akinori MUSHA <[email protected]>
* ext/digest/sha2/sha2.c: Merge from rough. Fix a couple of
off-by-one errors in Aaron Gifford's code.
Obtained from: KAME via FreeBSD
KAME PR: 393
FreeBSD PR: kern/34242
Wed Feb 27 03:36:47 2002 Koji Arai <[email protected]>
* ext/dbm/dbm.c (fdbm_select): 1.7 behavior.
* ext/gdbm/gdbm.c (fgdbm_select): ditto.
* ext/sdbm/sdbm.c (fsdbm_select): ditto.
* ext/dbm/dbm.c (fdbm_delete): adopt Hash#delete behavior.
* ext/sdbm/sdbm.c (fsdbm_delete): ditto.
* ext/gdbm/gdbm.c: need not to dup key to the block.
* ext/sdbm/sdbm.c : replace RuntimeError with SDBMError.
Tue Feb 26 21:34:07 2002 Usaku Nakamura <[email protected]>
* bignum.c (rb_big_2comp): void function cannot return any value.
Tue Feb 26 16:52:12 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_missing): NoMethod error messages for true, false,
nil must respond visibility like for other objects.
Tue Feb 26 15:41:30 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): call trace_func for if/while conditions.
* marshal.c (r_object): separate r_regist from proc calling.
Tue Feb 26 11:25:50 2002 akira yamada <[email protected]>
* lib/uri/generic.rb: merge0 shuld return [oth, oth] if oth is
absolute URI.
* lib/uri/generic.rb: registry part must not be allowed for any
schemes for the Internet. (RFC2396, section 3.2.2 and 3.2.1.)
Mon Feb 25 21:22:41 2002 Akinori MUSHA <[email protected]>
* ext/syslog/syslog.c: Merge from rough. Use SafeStringValue().
Mon Feb 25 21:12:08 2002 Akinori MUSHA <[email protected]>
* ext/syslog/syslog.c: Merge from rough. Turn Syslog into a
module keeping backward compatibility intact.
Mon Feb 25 19:35:48 2002 Nobuyoshi Nakada <[email protected]>
* sample/test.rb (system): test with scripts under the source
directory.
Mon Feb 25 15:14:01 2002 Yukihiro Matsumoto <[email protected]>
* eval.c (method_inspect): should not dump core for unbound
singleton methods.
* object.c (rb_mod_to_s): better description.
Mon Feb 25 13:32:13 2002 Nobuyoshi Nakada <[email protected]>
* lib/shell.rb (Shell::expand_path): relative to @cwd.