-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathChangeLog
8432 lines (5686 loc) · 269 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
2013-02-14 Holger Hans Peter Freyther <holger@freyther.de>
* kernel/StreamOps.st: Override the >>#species selector.
* tests/streams.st: Add testcase.
* tests/streams.ok: Update the result.
2013-01-23 Gwenael Casaccio <gwenael.casaccio@gmail.com>
* kernel/Behavior.st: Remove security.
* kernel/BindingDict.st: Remove security.
* kernel/Class.st: Remove security.
* kernel/ContextPart.st: Remove security.
* kernel/Metaclass.st: Remove security.
* kernel/Object.st: Remove security.
* kernel/Security.st: Delete the file.
* kernel/SysExcept.st: Remove security exceptions.
* libgst/Makefile.am: Remove security files.
* libgst/comp.c: Remove security checks.
* libgst/dict.c: Update Class structure.
* libgst/dict.h: Update Class structure.
* libgst/files.c: Remove security file from bootstrap.
* libgst/gst-parse.c: Remove security checks.
* libgst/interp.c: Remove security checks.
* libgst/opt.c: Remove security checks.
* libgst/prims.def: Remove security primitives.
* libgst/security.c: Remove file.
* libgst/security.h: Remove file.
* libgst/sym.c: Remove security checks.
* packages.xml: Remove security file.
* tests/Makefile.am: Remove security tests.
* tests/testsuite.at: Remove security tests.
* tests/untrusted.ok: Remove security tests.
* tests/untrusted.st: Remove security tests.
2013-01-27 Holger Hans Peter Freyther <holger@freyther.de>
* configure.ac: Enable the silent rules.
* snprintfv/configure.ac: Enable the silent rules.
2013-01-29 Holger Hans Peter Freyther <holger@freyther.de>
* tests/stcompiler.st: Add parsing test.
* tests/stcompiler.ok: Update the test result.
2013-01-17 Holger Freyther <holger@freyther.de>
* kernel/Delay.st: Name the process created.
2013-01-17 Holger Freyther <holger@freyther.de>
* tests/dates.ok: Fix the testcase to read from the right
ReadStream.
* tests/dates.st: Update the test result.
2013-01-23 Holger Freyther <holger@freyther.de>
* .travis.yml: Update before_install to update the apt repository.
2013-03-16 Holger Freyther <holger@freyther.de>
* .travis.yml: Add description for the travis-ci service.
2013-03-16 Holger Freyther <holger@freyther.de>
* tests/Makefile.am: Add streams.st and streams.ok to data
2012-10-09 Paolo Bonzini <bonzini@gnu.org>
Holger Freyther <holger@freyther.de>
* kernel/StreamOps.st: Fix previous changeset.
* tests/streams.st: New.
* tests/streams.ok: New.
2012-10-08 Paolo Bonzini <bonzini@gnu.org>
* kernel/StreamOps.st: Ensure "last" is up to date when a
stream has reached its end. Reported by Holger Freyther.
2012-10-02 Holger Freyther <holger@freyther.de>
* tests/stcompiler.st: Add testcase for pragma parsing.
* tests/stcompiler.ok: Update the test result.
2012-09-29 Holger Freyther <holger@freyther.de>
* scripts/Convert.st: Collect all rewrite expressions and parse
them with the selected parser.
2012-09-29 Holger Freyther <holger@freyther.de>
* tests/stcompiler.st: Add testcase for parsing 16rff.
* tests/stcompiler.ok: Update the test result.
2012-09-14 Thomas Girard <thomas.g.girard@free.fr>
* tests/cobjects.st: Add CBoolean test case for issue#659.
* tests/cobjects.ok: Regenerate.
* kernel/CObject.st: Add missing CBoolean class>>#type.
2012-09-09 Holger Freyther <holger@freyther.de>
* tests/stcompiler.st: Add testcase for article.
* tests/stcompiler.ok: Update the test result.
2012-09-09 Holger Freyther <holger@freyther.de>
* kernel/Delay.st: Name the delay process.
2012-09-09 Holger Freyther <holger@freyther.de>
* kernel/CallinProcess.st: Copy the priority directly.
2012-10-08 Roman <komputikisto@gmail.com>
* kernel/Iterable.st: Fix #fold: for objects that do not implement
#isEmpty.
2012-10-08 Roman <komputikisto@gmail.com>
* kernel/Link.st: Fail fast on zero or negative indices.
2012-02-22 Paolo Bonzini <bonzini@gnu.org>
* kernel/CallinProcess.st: Fix creation of cloned process, reported
by Holger Freyther.
2012-02-22 Gwenael Casaccio <mrgwen@gmail.com>
Paolo Bonzini <bonzini@gnu.org>
* kernel/PkgLoader.st: Add support for <dir> tag.
2012-07-15 Paolo Bonzini <bonzini@gnu.org>
* scripts/Package.st: Disable again backtraces.
2012-06-04 Thomas Girard <thomas.g.girard@free.fr>
* tests/cobjects.st: Adapt longLong test case, showing the issue#646.
* tests/cobjects.ok: Regenerate.
2012-05-19 Ladislav Marek <ladislav@marek.su>
* kernel/MessageLookup.st: Add missing dot.
2012-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Switch to nanosecond-precision.
* kernel/ProcSched.st: Rename #signal:atMillisecondClockValue:
to #signal:atNanosecondClockValue:.
2012-05-19 Paolo Bonzini <bonzini@gnu.org>
* libgst/sysdep.h: Rename _gst_init_sysdep_win32 to
_gst_init_sysdep_timer.
* libgst/sysdep/common/files.c: Likewise.
* libgst/sysdep/cygwin/timer.c: Likewise.
* libgst/sysdep/win32/timer.c: Likewise.
* libgst/sysdep/posix/timer.c: Support POSIX real-time timers.
2012-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Use #signal:atMillisecondClockValue:.
* kernel/ProcSched.st: Define #signal:atMillisecondClockValue:.
2012-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/Random.st: Do not use #primMillisecondClock.
* kernel/Time.st: Base time on nanoseconds.
2012-05-13 Stefano Lattarini <stefano.lattarini@gmail.com> (tiny change)
build: don't use obsolescent AM_PROG_CC_STDC and AM_CONFIG_HEADER
The Automake-provided macros 'AM_PROG_CC_STDC' and 'AM_CONFIG_HEADER'
have been superseded respectively by the Autoconf-provided ones
'AC_PROG_CC' (since October 2002) and 'AC_CONFIG_HEADERS' (since July
2002). Moreover, those obsolescent macros will be removed in the next
major Automake version (1.13). Stop using them.
* configure.ac (AM_CONFIG_HEADER): Don't use this, ...
(AC_CONFIG_HEADERS): ... use this instead. While we are at it,
properly quote the argument.
* snprintfv/configure.ac (AM_PROG_CC_STDC): Drop this, the invocation
to AC_PROG_CC is enough.
2012-03-29 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add testcase.
* tests/compiler.ok: Regenerate.
2012-02-02 Holger Hans Peter Freyther <holger@freyther.de>
* scripts/Package.st: Scan for new *.star files.
2011-09-25 Holger Hans Peter Freyther <holger@freyther.de>
* kernel/File.st: Add a <category: 'text'> to the class.
* kernel/PkgLoader.st: Ditto.
* kernel/VFS.st: Ditto.
2012-03-01 Paolo Bonzini <bonzini@gnu.org>
* kernel/CompildMeth.st: Return self from #makeLiteralsReadOnly.
Do not make globals read-only. Reported by Gwenael Casaccio.
2012-02-22 Paolo Bonzini <bonzini@gnu.org>
* kernel/LinkedList: Add #first, #last, and improve error on #at:.
2012-02-22 Paolo Bonzini <bonzini@gnu.org>
Gwenael Casaccio <mrgwen@gmail.com>
* tests/processes.st: Add testcase.
* tests/processes.ok: Regenerate.
2012-02-08 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/MethodDict.st: Fix initialization of mutex.
2012-02-04 Paolo Bonzini <bonzini@gnu.org>
* kernel/MessageLookup.st: Change #sendTo: to #retrySendTo:.
Keep inherited implementation of #sendTo:.
2012-02-02 Paolo Bonzini <bonzini@gnu.org>
Gwenael Casaccio <mrgwen@gmail.com>
* tests/delays.st: Add testcase.
* tests/delays.ok: Regenerate.
2012-02-02 Paolo Bonzini <bonzini@gnu.org>
* kernel/Process.st: Do not interrupt a terminated process.
2012-01-30 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Fix previous commit.
* tests/delays.st: Add testcase.
* tests/delays.ok: Regenerate.
2012-01-30 Gwenael Casaccio <mrgwen@gmail.com>
Paolo Bonzini <bonzini@gnu.org>
* tests/exceptions.st: Add MessageLookup test.
* tests/exceptions.ok: Regenerate.
2012-01-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/MessageLookup.st: Fix cut-and-paste error, reported by Gwen.
2012-01-21 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/Delay.st: Reset delay before removing.
2011-12-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/CFuncs.st: Add #system:withArguments:.
* kernel/VFSZip.st: Use it instead of #%. Reported by Maarten van Beek.
* scripts/Package.st: Use it instead of #%.
2011-12-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/FilePath.st: Add #withShellEscapes and use it for printing.
2011-12-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/CharArray.st: Add #withShellEscapes (and OS-specific workers).
2011-12-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/DirMessage.st: Add #method.
* kernel/MessageLookup.st: New.
2011-11-28 Paolo Bonzini <bonzini@gnu.org>
* scripts/Package.st: Use #symlinkFrom: to create absolute-path
symlinks.
2011-11-23 Paolo Bonzini <bonzini@gnu.org>
* kernel/AnsiDates.st: Improve #readFrom: to not read ahead too much
and parse more formats. Reported by Maarten van Beek.
* kernel/Date.st: Improve #readFrom: to not read ahead too much
and parse negative years.
* kernel/Time.st: Improve #readFrom: to not read ahead too much.
* tests/dates.st: Add testcases.
* tests/dates.ok: Regenerate.
2011-11-23 Paolo Bonzini <bonzini@gnu.org>
* kernel/AnsiDates.st: Fix printing DateTimes with negative
fractional offsets.
2011-11-14 Mehul Sanghvi <mehul.sanghvi@gmail.com>
* kernel/CFuncs.st: Add #environ.
2011-11-10 Gwenael Casaccio <mrgwen@gmail.com>
Paolo Bonzini <bonzini@gnu.org>
* kernel/Behavior.st: Add #scopeDictionary.
* kernel/Dictionary.st: Add #scopeDictionary.
2011-11-04 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/RootNamespc.st: Fix #new:.
2011-09-22 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Restart pending delays when the image restarts.
* kernel/Time.st: Make the millisecondClockValue monotonic across
image save.
2011-08-13 Paolo Bonzini <bonzini@gnu.org>
Mathieu Suen <mathieusuen@yahoo.fr>
* kernel/ProcSched.st: Add #dispatchEvents and #forkEventLoop.
2011-08-13 Paolo Bonzini <bonzini@gnu.org>
* scripts/Remote.st: Move server logic to RemoteServer class.
2011-08-13 Gwenael Casaccio <mrgwen@gmail.com>
* scripts/Remote.st: Suspend/resume server process across snapshots.
2011-08-13 Paolo Bonzini <bonzini@gnu.org>
* scripts/Remote.st: Fix typo in 2fc74b9.
2011-08-13 Paolo Bonzini <bonzini@gnu.org>
* kernel/FileDescr.st: Recheck file descriptor state between
async and sync polling.
2011-08-13 Paolo Bonzini <bonzini@gnu.org>
Mathieu Suen <mathieusuen@yahoo.fr>
* kernel/FilePath.st: Fix Windows "File fullNameFor: 'C:'".
2011-08-05 Paolo Bonzini <bonzini@gnu.org>
* gst-tool.c: Add -i option.
2011-08-03 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/ObjDumper.st: Remove.
* tests/objdump.ok: Remove.
* tests/objdump.st: Remove.
2011-08-03 Paolo Bonzini <bonzini@gnu.org>
* kernel/ObjDumper.st: Fix VersionableObjectProxy. Reported by
Gwenael Casaccio.
2011-08-01 Mathieu Suen <mathieusuen@yahoo.fr>
* kernel/CCallable.st: Add #longLong/#uLongLong.
* kernel/CObject.st: Add CLongLong and CULongLong.
* kernel/CType.st: Add CLongLongType and CULongLongType.
* tests/cobjects.ok: Add long long test cases.
* tests/cobjects.st: Regenerate.
2011-07-29 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/AbstNamespc.st: Fix name of #compileAll.
2011-08-01 Paolo Bonzini <bonzini@gnu.org>
* kernel/Float.st: Small optimization, check sameDown/sameUp by
comparing the result of \\ against eps.
2011-07-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/ContextPart.st: Improve 2011-07-15 change.
2011-07-15 Paolo Bonzini <bonzini@gnu.org>
* kernel/ContextPart.st: Fix off-by-one in accessing ip for currentLine.
2011-07-13 Paolo Bonzini <bonzini@gnu.org>
* libgst/sysdep/posix/signals.c: Use pthread_sigmask, not sigprocmask.
Suggested by Gwenael Casaccio.
2011-07-04 Paolo Bonzini <bonzini@gnu.org>
Gwenael Casaccio <mrgwen@gmail.com>
* kernel/OrderColl.st: Replace loops with replaceFromToWithStartingAt
primitives.
* kernel/SortedColl.st: Likewise.
2011-07-04 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/OrderColl.st: Fix previous commit.
2011-07-04 Paolo Bonzini <bonzini@gnu.org>
* kernel/OrderColl.st: Inline #makeRoomFirstFor: and #makeRoomLastFor:
when the argument is one.
2011-07-04 Paolo Bonzini <bonzini@gnu.org>
* kernel/Float.st: Test against both num - eps and num + eps.
* tests/floatmath.st: Add regression test.
* tests/floatmath.ok: Regenerate.
2011-06-28 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/BindingDict.st: Remove #beConsistent.
* kernel/Collection.st: Remove #beConsistent.
* kernel/Dictionary.st: Remove #beConsistent.
* kernel/HashedColl.st: Remove #beConsistent.
* kernel/IdentDict.st: Remove #beConsistent.
* kernel/IdentitySet.st: Remove #beConsistent.
* kernel/LookupTable.st: Remove #beConsistent.
* kernel/OrderColl.st: Remove #beConsistent.
* kernel/SeqCollect.st: Remove #beConsistent.
* kernel/Set.st: Remove #beConsistent.
* kernel/SortCollect.st: Add #beConsistent here.
* kernel/WeakObjects.st: Add #beConsistent here.
2011-06-10 Mathieu Suen <mathieusuen@yahoo.fr>
* kernel/CType.st: Add methods for equality and hashing.
2011-06-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/VFS.st: Fix previous commit.
2011-06-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/Collection.st: Add #includesAllOf:.
2011-06-02 Paolo Bonzini <bonzini@gnu.org>
* kernel/ObjDumper.st: Call #postLoad on fixed objects.
2011-05-30 Holger Hans Peter Freyther <holger@freyther.de>
* scripts/Remote.st: Resolve the hostname to an address to be
used by Sockets.ServerSocket>>#port:bindTo:.
2011-05-26 Paolo Bonzini <bonzini@gnu.org>
* kernel/VFS.st: Fix off-by-one in RecursiveFileWrapper>>#namesDo:.
Reported by Gwenael Casaccio.
2011-05-26 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/MethodDict.st: Wrap operation with a mutex.
2011-05-26 Paolo Bonzini <bonzini@gnu.org>
* kernel/CharArray.st: Support string keys in #%.
* tests/strings.st: Add testcases.
* tests/strings.ok: Regenerate.
2011-05-26 Paolo Bonzini <bonzini@gnu.org>
* kernel/AnsiDates.st: Fix printing of negative offsets.
Reported by Holger Hans Peter Freyther.
2011-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/SysExcept.st: Wrap modifications to #'__terminate' with
#makeReadOnly:.
2011-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/AnsiDates.st: Implement #today sensibly. Reported by
Holger Hans Peter Freyther.
2011-05-19 Paolo Bonzini <bonzini@gnu.org>
* kernel/AnsiDates.st: Implement #asLocal correctly.
* kernel/Time.st: Implement #timezoneBias: helper primitive.
2011-05-18 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add testcases.
* tests/compiler.ok: Regenerate.
2011-04-29 Paolo Bonzini <bonzini@gnu.org>
* kernel/Integer.st: Add #printPaddedWith:to:.
2011-04-29 Paolo Bonzini <bonzini@gnu.org>
* kernel/FileDescr.st: Fix finalizer. Reported by Holger
Hans Peter Freyther.
2011-04-21 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/CompildMeth.st: Move oldsyntax flag over from
the old CompiledMethod in the cCall pragma handlers.
2011-04-12 Holger Hans Peter Freyther <holger@freyther.de>
* kernel/Delay.st: Add #value:onTimeoutDo:.
* kernel/Process.st: Add #signalInterrupt:.
* kernel/SysExcept.st: Add TimeoutNotification.
* tests/delays.st: Add testcases.
* tests/delays.ok: Regenerate.
2011-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/CType.st: Add #new: and #gcNew:.
2011-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/SeqCollect.st: Add #size.
2011-03-28 Paolo Bonzini <bonzini@gnu.org>
* kernel/FileDescr.st: Report end-of-stream when read/write return 0.
2011-03-24 Paolo Bonzini <bonzini@gnu.org>
* tests/intmath.st: Add testcases.
* tests/intmath.ok: Regenerate.
2011-03-09 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add test case.
* tests/compiler.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/pools.st: Enable fixed testcases.
* tests/pools.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add test case.
* tests/compiler.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add test case.
* tests/compiler.ok: Regenerate.
* tests/pools.st: Enable fixed testcases.
* tests/pools.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/pools.st: Enable fixed testcases.
* tests/pools.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/compiler.st: Add testcase.
* tests/compiler.ok: Regenerate.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* tests/pools.st: Add broken testcases.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* kernel/CType.st: Fix #storeOn: for array types.
2011-03-07 Paolo Bonzini <bonzini@gnu.org>
* kernel/Autoload.st: Fix declaration of #class for Autoload.
2011-02-28 Paolo Bonzini <bonzini@gnu.org>
* kernel/FloatQ.st: Improve precision of FloatQ constants for
113-bit floats.
2011-02-11 Paolo Bonzini <bonzini@gnu.org>
* tests/cobjects.ok: Regenerate.
* tests/cobjects.st: Add test case for variadic.
2011-02-06 Holger Hans Peter Freyther <holger@freyther.de>
* tests/stcompiler.ok: Regenerate.
* tests/stcompiler.st: Add test case.
2011-02-04 Holger Hans Peter Freyther <holger@freyther.de>
* tests/testsuite.at: Add the Sockets test.
2011-02-02 Holger Hans Peter Freyther <holger@freyther.de>
* tests/Makefile.am: Add shape.ok and shape.st to the noinst data
2011-02-02 Holger Hans Peter Freyther <holger@freyther.de>
* tests/stcompiler.ok: New.
* tests/stcompiler.st: New.
* tests/testsuite.at: Add STInST compiler tests.
* tests/Makefile.am: Add STInST compiler tests.
2011-02-03 Paolo Bonzini <bonzini@gnu.org>
* tests/shape.st: Fix for 32-bit compilation.
* tests/shape.ok: Regenerate.
2011-01-27 Paolo Bonzini <bonzini@gnu.org>
* testsuite/compiler.ok: Regenerate, nil is returned consistently
from #compile: if the method has errors.
2011-01-27 Paolo Bonzini <bonzini@gnu.org>
* testsuite/untrusted.st: Use a filein from an untrusted process
instead of passing information across #methodsFor: (which worked
more or less by chance).
* testsuite/untrusted.ok: Regenerate.
2011-01-27 Mathieu Suen <mathieusuen@yahoo.fr>
Paolo Bonzini <bonzini@gnu.org>
* kernel/Random.st: Implement Mersenne Twister.
2011-01-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/Builtins.st: Add #methodsFor:.
2011-01-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/Builtins.st: Remove obsolete stubs.
2011-01-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/Builtins.st: Add #subclass:environment: and Namespace
class>>#current.
* kernel/Class.st: Add #subclass:environment:.
* kernel/UndefObject.st: Add #subclass:environment:.
2011-01-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/Class.st: Add #allSharedPoolDictionaries:overrideEnvironment:.
* kernel/UndefObject.st: Use it.
2011-01-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/UndefObject.st: Add Smalltalk as a shared pool.
2011-01-25 Paolo Bonzini <bonzini@gnu.org>
* scripts/Package.st: Fix String<->File confusion with --prepare.
2011-01-18 Paolo Bonzini <bonzini@gnu.org>
* kernel/Process.st: Remove useless #yield.
2011-01-18 Paolo Bonzini <bonzini@gnu.org>
* kernel/Process.st: Remove useless #resume of an active process.
2011-01-18 Paolo Bonzini <bonzini@gnu.org>
* kernel/Process.st: Remove useless #yield.
2011-01-15 Paolo Bonzini <bonzini@gnu.org>
* kernel/DLD.st: Fix case when the same library is loaded multiple
times.
2011-01-14 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/Class.st: Detect class name conflicting with its namespace.
2011-01-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Autoload.st: Add the ability to plug arbitrary loaders.
Suggested by Denis Washington.
2011-01-10 Mathieu Suen <mathieusuen@yahoo.fr>
* tests/shape.ok: New.
* tests/shape.st: New.
* tests/testsuite.at: Add it.
2010-12-20 Paolo Bonzini <bonzini@gnu.org>
* kernel/Transcript.st: Add #critical:.
2010-12-18 Paolo Bonzini <bonzini@gnu.org>
* kernel/OrderColl.st: Add #identityRemove:ifAbsent: and
#identityRemove:.
* kernel/Delay.st: Use it. Reset the delay after removal.
2010-12-13 Paolo Bonzini <bonzini@gnu.org>
* kernel/OrderColl.st: Speed up iteration 2x.
2010-12-13 Paolo Bonzini <bonzini@gnu.org>
* kernel/FilePath.st: Remove unused instance variable. Reported
by Gwenael Casaccio.
2010-12-09 Paolo Bonzini <bonzini@gnu.org>
* kernel/PkgLoader.st: Do not modify "self files".
2010-12-05 Paolo Bonzini <bonzini@gnu.org>
* kernel/FileDescr.st: Fix deadlock when reading last byte from
a two-way pipe.
2010-12-04 Paolo Bonzini <bonzini@gnu.org>
* kernel/PkgLoader.st: Add <filein> tags that do not have a matching
<built-file> tag to #files. Do not print <file> tags for files
that are already printed with <filein>.
2010-12-04 Paolo Bonzini <bonzini@gnu.org>
* tests/strings.st: Add testcase.
* tests/strings.ok: Regenerate.
2010-11-13 Paolo Bonzini <bonzini@gnu.org>
* kernel/Semaphore.st: Fix race.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Remove ActiveDelay, simplify code.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/ContextPart.st: Make accesses to out of bounds stack
slots safe.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Add #asAbsolute, #isAbsolute. Add #postCopy
to make copied delays reusable.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Semaphore.st: Document return value of #wait. Use it to
simplify #critical:.
* kernel/Delay.st: Add return value from #timedWaitOn:.
* testsuite/delays.st: Test return values of #timedWaitOn:.
* testsuite/delays.ok: Regenerate.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Add #timedWaitOn:.
* testsuite/delays.st: Add testcases.
* testsuite/delays.ok: Regenerate.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Fix race.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Add delaySemaphore to detect reentrant usage
of a Delay. Change DelayEvent to DelayRequestor throughout, changing
it and ActiveDelay to not be an Association anymore. Use #isActive
to distinguish between schedule and unschedule requests.
2010-11-10 Paolo Bonzini <bonzini@gnu.org>
* kernel/Delay.st: Slight simplification of #wait.
2010-11-08 Paolo Bonzini <bonzini@gnu.org>
* kernel/SeqCollect.st: Optimize #atAllPut:.
* examples/Bench.st: Use #atAllPut: for array initialization.
2010-11-02 Paolo Bonzini <bonzini@gnu.org>
* examples/Bench.st: Increase runtime to keep up with newer
computers.
2010-10-24 Paolo Bonzini <bonzini@gnu.org>
* kernel/Iterable.st: Add #ifNil:ifNotNilDo: and friends.
* kernel/UndefObject.st: Likewise.
2010-10-23 Paolo Bonzini <bonzini@gnu.org>
* examples/MiniDebugger.st: Fix and improve process commands.
2010-10-19 Paolo Bonzini <bonzini@gnu.org>
* examples/Methods.st: Fix bitrot.
2010-10-17 Holger Hans Peter Freyther <zecke@selfish.org>
* tests/cobject.st: Add client code for ByteArray>>#asCData and
String>>#asCData.
* tests/cobject.ok: Update the result.
2010-10-17 Paolo Bonzini <bonzini@gnu.org>
* kernel/String.st: Document NULL-termination of output of
#asCData and #asCData:.
2010-10-17 Paolo Bonzini <bonzini@gnu.org>
* kernel/UndefObject.st: Add #inheritsFrom:
* scripts/Test.st: Automatically load SUnit.
2010-10-16 Paolo Bonzini <bonzini@gnu.org>
* kernel/ByteArray.st: Add #asCData.
* kernel/String.st: Add #asCData.
2010-10-16 Paolo Bonzini <bonzini@gnu.org>
* scripts/GenDoc.st: Handle warnings from STClassLoader, document
all loaded classes rather than only the fully defined ones.
2010-10-15 Paolo Bonzini <bonzini@gnu.org>
* kernel/ByteArray.st: Add #castTo:.
2010-10-07 Paolo Bonzini <bonzini@gnu.org>
* tests/testsuite.at: Mark packages depending on Iconv as optional.
* tests/testsuite: Regenerate.
2010-09-28 Holger Hans Peter Freyther <zecke@selfish.org>
* kernel/FileDescr.st: Fix a typo.
2010-09-28 Holger Hans Peter Freyther <zecke@selfish.org>
* tests/classes.ok: Remove "Recompiling" messages.
* tests/mutate.ok: Remove "Recompiling" messages.
2010-09-28 Paolo Bonzini <bonzini@gnu.org>
* kernel/Behavior.st: Recompile this class is "removed" is true.
Remove #subclassesNeedRecompilation since it's useless now with no
"Recompiling" messages.
2010-09-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/Behavior.st: Remove "Recompiling" messages.
* kernel/CompildMeth.st: Remove "Recompiling" messages.
* kernel/Metaclass.st: Remove "Recompiling" messages.
2010-09-25 Paolo Bonzini <bonzini@gnu.org>
* kernel/SysExcept.st: Fix duplicate instance variable declaration.
2010-09-25 Paolo Bonzini <bonzini@gnu.org>
* kernel/Behavior.st: Fix #instanceVariableNames: to always recompile
when needed. Reported by Mathieu Suen.
* tests/classes.st: Add testcase.
* tests/classes.ok: Regenerate.
2010-09-13 Holger Hand Peter Freyther <zecke@selfish.org>
* tests/strings.st: Tests for String>>asNumber.
* tests/strings.ok: Regenerate.
2010-09-13 Paolo Bonzini <bonzini@gnu.org>
* tests/cobjects.st: Add CPtr testcase.
* tests/cobjects.ok: Regenerate.
2010-08-31 Paolo Bonzini <bonzini@gnu.org>
* kernel/Float.st: Correctly print numbers that require extra
digits to be distinguished. Also try rounding down to eliminate
long sequence of zeros. Reported by Nicolas Petton.
* tests/floatmath.st: Add testcases.
* tests/floatmath.ok: Regenerate.
2010-08-31 Paolo Bonzini <bonzini@gnu.org>
* kernel/Number.st: Read base-10 exponents.
2010-08-05 Paolo Bonzini <bonzini@gnu.org>
* kernel/URL.st: Add #scheme:host:path:, fix #scheme:path:.
2010-07-26 Paolo Bonzini <bonzini@gnu.org>
* scripts/Remote.st: Fix typo.
2010-06-16 Holger Hans Peter Freyther <zecke@selfish.org>
* kernel/File.st: Remove unused local variable.
2010-06-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/CompildCode.st: Implement #= using identity. Reported
by Gwenael Casaccio.
2010-06-03 Paolo Bonzini <bonzini@gnu.org>
* kernel/PkgLoader.st: Add /usr/share/smalltalk/site-packages.
2010-05-31 Paolo Bonzini <bonzini@gnu.org>
* scripts/Package.st: Remove debugging output. Change "git fetch"
to "git pull".
2010-05-27 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/LookupKey.st: Remove value instance variable.
2010-05-25 Paolo Bonzini <bonzini@gnu.org>
* kernel/Object.st: Fix error message for storing UnicodeCharacters
into Strings.
2010-05-21 Paolo Bonzini <bonzini@gnu.org>
* kernel/FileDescr.st: Fix #atEnd for pipes.
2010-05-21 Paolo Bonzini <bonzini@gnu.org>
* kernel/DynVariable.st: Reimplement DynamicVariable here.
* kernel/ProcEnv.st: Add methods used by DynamicVariable.
* kernel/SysExcept.st: Remove old implementation from here.
2010-05-19 Paolo Bonzini <bonzini@gnu.org>
* scripts/Remote.st: Gracefully handle #atEnd on the remote socket.
2010-05-03 Holger Hans Peter Freyther <zecke@selfish.org>
* gst-tool.c: Add -v|-V|--verbose to all tools.
* scripts/Package.st: Handle the verbose option.
* scripts/GenDoc.st: Likewise.
* scripts/Profile.st: Likewise.
* scripts/Remote.st: Likewise.
2010-04-15 Paolo Bonzini <bonzini@gnu.org>
* kernel/Regex.st: Fix printing a MatchingRegexResults.
2010-04-11 Paolo Bonzini <bonzini@gnu.org>
* winewrapper.c: Work around spawnl(P_WAIT, "...") and system()
not waiting when a Unix program is invoked (see
http://bugs.winehq.org/show_bug.cgi?id=22338).
2010-04-11 Paolo Bonzini <bonzini@gnu.org>
* scripts/Test.st: Fix help message.
2010-04-11 Paolo Bonzini <bonzini@gnu.org>
* kernel/Directory.st: Fix running with no home directory.
2010-04-10 Paolo Bonzini <bonzini@gnu.org>
* winewrapper.c: Support Unix to DOS path conversion. Always convert
argv[1] to a DOS path.
2010-04-10 Paolo Bonzini <bonzini@gnu.org>
* scripts/Package.st: Use File>>#isAbsolute.
2010-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/Interval.st: Add #copyFrom:to:.
2010-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/Interval.st: Fix operations on empty interval, improve
printing.
2010-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/DirMessage.st: Add #value:value:.
2010-04-06 Paolo Bonzini <bonzini@gnu.org>
* kernel/Number.st: Add #isExact.
* kernel/Float.st: Add #isExact.
* kernel/Interval.st: Add #isExact.
2010-03-27 Paolo Bonzini <bonzini@gnu.org>
* kernel/File.st: Do not check errno unless a system call fails.
* kernel/Directory.st: Likewise.
* kernel/FileDescr.st: Likewise. Remove useless #...ifFail: keywords.
2010-03-25 Holger Hans Peter Freyther <zecke@selfish.org>
* kernel/Integer.st: Refer to the right parameter of the selectors.
2010-03-25 Paolo Bonzini <bonzini@gnu.org>
* kernel/SeqCollect.st: Make #indexOfSubCollection: return true
for an empty needle. Against ANSI, but consistent with
#startsWith:/#endsWith:.
2010-03-03 Gwenael Casaccio <mrgwen@gmail.com>
* kernel/ContextPart.st: Fix thinko in #debuggerClass.
2010-03-03 Gwenael Casaccio <mrgwen@gmail.com>