-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathChangeLog
15473 lines (11564 loc) · 522 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
2024-10-10 Erick Gallesio <eg@stklos.net>
- STklos 2.10 release
- Fix some problems when compiling in a chrooted environment
2024-10-09 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-inform-lib-and-scheme-paths'
- Add documentation path to the configure summary
- Merge branch 'jpellegrini-inform-lib-and-scheme-paths'
- Merge branch 'inform-lib-and-scheme-paths' of https://github.com/jpellegrini/STklos into jpellegrini-inform-lib-and-scheme-paths
- Merge branch 'jpellegrini-hacking+'
- Merge branch 'hacking+' of https://github.com/jpellegrini/STklos into jpellegrini-hacking+
- Merge branch 'next-unicode'
- Updated Unicode to version 16.0.0
2024-09-23 Erick Gallesio <eg@stklos.net>
- Merge pull request #690 from jpellegrini/makefiles
2024-09-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-libgc-8.2.8'
2024-09-23 Erick Gallesio <eg@stklos.net>
- Merge pull request #692 from jpellegrini/read-ci-tests
2024-09-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'next-etc'
- Updated the stklos-config (option -c) script
- Updated README and simple-module.c in directory "etc"
- Merge branch 'next-load'
- Updated documentation of load and try-load
- Permit to load shared object file in a given environment
- Permit to load byte compiled file in a given environment
2024-09-22 Jeronimo Pellegrini <j_p@aleph0.info>
- Add tests to eval-from-string-ci
- Add tests for case-insensitive reads
2024-09-22 Erick Gallesio <eg@stklos.net>
- Added the second (optional) parameter to load and try-load
- Merge branch 'next-sensitive'
2024-09-22 Jeronimo Pellegrini <j_p@aleph0.info>
- Upgrade libgc to 8.2.8
2024-09-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Do (cd DIR && rm ...) || true
2024-09-19 Erick Gallesio <eg@stklos.net>
- Added primitive eval-from-string-ci
- Added read-from-string-ci primitive
- Added read-ci primitive
- Deleted the option --disable-case-sensitive
- compile-file (and stklos-compile) can again be sensitive
- Correct include-ci now that we don't have anymore a global state
- Added documentation of the new version of read-case-sensitive
- Suppressed old read-case-sensitive in C (which was still present)
- Deleted the global state we had about case sensitivity.
2024-09-15 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-exact-rational-p'
- Merge branch 'exact-rational-p' of https://github.com/jpellegrini/STklos into jpellegrini-exact-rational-p
- Suppressed useless variable in boot file
- Code factorization
- Changed the way default case sensitivity is set
2024-09-14 Jeronimo Pellegrini <j_p@aleph0.info>
- Delete EXACT_RATIONALP
2024-09-11 Erick Gallesio <eg@stklos.net>
- Do not verify the parameter thr in STk_thread_inc_allocs
- Fixed compilation of STklos without threads
- Merge branch 'jpellegrini-no-ffi'
2024-09-10 Erick Gallesio <eg@stklos.net>
- Updated documentation with new configure options
- Changed the way thread are displayed in summary
- Inverted the --enable-case-insensitive logic
- Change the --enable-thread option a bit
2024-09-09 Erick Gallesio <eg@stklos.net>
- Changed the code about case-sensitivity in configure.ac
- Changed the configure --without-ffi by --enable-ffi
- Changed (a bit) configuration summary to be more "coherent"
- Merge branch 'no-ffi' of https://github.com/jpellegrini/STklos into jpellegrini-no-ffi
- Merge branch 'jpellegrini-oo-doc'
- Merge branch 'oo-doc' of https://github.com/jpellegrini/STklos into jpellegrini-oo-doc
2024-09-05 Erick Gallesio <eg@stklos.net>
- exact_exponent_expt take a long instead of a SCM now
- Merge (by hand) @jpellegrini PR#651 (Enhancements to expt)
2024-09-04 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-expt-minus-one'
- Added some tests on expt
- Correct expt for some values
- Merge branch 'expt-minus-one' of https://github.com/jpellegrini/STklos into jpellegrini-expt-minus-one
- Small rewriting of <canvas-path>
2024-09-03 Erick Gallesio <eg@stklos.net>
- Exported %guess-pathname (which is used by GTklos demos with imgs)
- Updated header GTklos demo
- Updated image1 and toolbar GTklos demos
2024-09-01 Jeronimo Pellegrini <j_p@aleph0.info>
- Add a clarifying example in documentation of change-class
- Document change-class
- More OO documentation
- Document class-subclasses
2024-09-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-doc-clos'
- initialize => initialize-instance in extensions/gtklos
- Renamed initialize in initialize-instance
- Merged initialize documentation with make and allocate-instance
- Merge branch 'doc-clos' of https://github.com/jpellegrini/STklos into jpellegrini-doc-clos
2024-08-31 Erick Gallesio <eg@stklos.net>
- Merge pull request #677 from jpellegrini/quick-install.md
2024-08-31 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-compiler-fix'
- Change error message when making a rational with 0 denominator
- All fxquotient by 0 are compiler-error now
- Division by 0 was not always coherent
- Fix the calls to compiler-error
- Merge branch 'compiler-fix' of https://github.com/jpellegrini/STklos into jpellegrini-compiler-fix
- Merge branch 'v210-number'
- Fix CC version number when using tcc
2024-08-29 Jeronimo Pellegrini <j_p@aleph0.info>
- Add initialize doc to the manual
- Document initialize
2024-08-24 Jeronimo Pellegrini <j_p@aleph0.info>
- Update output example for ./configure
- Fix hep alignment in configure.ac
2024-08-23 Jeronimo Pellegrini <j_p@aleph0.info>
- Only test FFI when it's available
- Allow compiling without FFI
- Add primitive predicate %stklos-has-ffi?
- Allow absence of FFI
2024-08-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-doc-ffi'
- Merge branch 'doc-ffi' of https://github.com/jpellegrini/STklos into jpellegrini-doc-ffi
- Merge branch 'jpellegrini-doc-enhancement'
- Merge branch 'doc-enhancement' of https://github.com/jpellegrini/STklos into jpellegrini-doc-enhancement
- Merge branch 'next-repl'
2024-08-22 Erick Gallesio <eg@stklos.net>
- Added documentation about '!' in REPL
- Added '!' as a shell escape command in the REPL
- Merge branch 'next-doc'
- Fake the version number in (features) to be reproducible
- Suppress temporary file at end of documentation build
- Documentation update
- Fix a typo in documentation
- Suppress footer in HTML docs (to have reproducible builds)
- Merge branch 'fix-configure'
- Fix configure.ac which was lost in previous commit
2024-08-21 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-c-version'
- Merge branch 'c-version' of https://github.com/jpellegrini/STklos into jpellegrini-c-version
- Change the way we optimize addition or substactcion of 0
- Regression: division of a real by 0 is not an error
- Added multiplication & division bt 1 short-paths
2024-08-19 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-modversion'
- Shorten lines when displaying libraries (to be less than 80 chars)
- Merge branch 'modversion' of https://github.com/jpellegrini/STklos into jpellegrini-modversion
2024-08-06 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-tests'
- Suppressed the test using %make-cpointer-null
- Merge branch 'tests' of https://github.com/jpellegrini/STklos into jpellegrini-tests
- Merge branch 'jpellegrini-ffi'
- Bumped version of libffi in PACKAGES-USED
- Merge branch 'ffi' of https://github.com/jpellegrini/STklos into jpellegrini-ffi
- Merge branch 'jpellegrini-pcre'
- Updated config. in pcre2 + Bumped version in PACKAGES-USED file
- Merge branch 'pcre' of https://github.com/jpellegrini/STklos into jpellegrini-pcre
- Merge branch 'jpellegrini-libgc'
- Bumped the libgc version in PACKAGE_USED file
- Merge branch 'libgc' of https://github.com/jpellegrini/STklos into jpellegrini-libgc
- Avoid some allocations on * and / with 0
- Fix: (- 0 fx-least) is a bignum
- Going back on commit a9dc556110bd02b2e1e078dd1490a0a051049b1e
- Correct two tests in test-numbers
- Avoid allocation if adding a real and 0.0 (or -0.0)
- Replaced tests for 0.0 and -0.0 by REAL_ZEROP (instead fpclassify)
- Avoid allocations on + and - of the value 0
2024-08-02 Jeronimo Pellegrini <j_p@aleph0.info>
- Use |#t| and |#f| in docs, not {{true}} and {{false}}
- Give more examples in documentation
2024-08-02 Erick Gallesio <eg@stklos.net>
- Added simple tests for the binary C functions for +, -, *, /
- Fixed div2(rational, bignum) and div2(bignum, real)
2024-08-01 Erick Gallesio <eg@stklos.net>
- Bug fix: div2(real, complex)
- Rewrite bignum2double without convert (and convert function is gone)
2024-07-31 Jeronimo Pellegrini <j_p@aleph0.info>
- Allow for (expt -1 bignum)
2024-07-31 Erick Gallesio <eg@stklos.net>
- Simplify and homogenize code of add2, sub2, div2 and mult2
2024-07-31 Jeronimo Pellegrini <j_p@aleph0.info>
- Explain how to pass NULL pointer via FFI
2024-07-31 Erick Gallesio <eg@stklos.net>
- Simplified code of the STk_div
2024-07-31 Jeronimo Pellegrini <j_p@aleph0.info>
- Add NULL pointer test to FFI
2024-07-31 Erick Gallesio <eg@stklos.net>
- Rewrote STk_div without calling convert
2024-07-30 Jeronimo Pellegrini <j_p@aleph0.info>
- More FFI tests
- Report system library versions
- Update libpcre to 10.44
- Update libgc to 8.2.6
- Update libffi version to 3.4.6
- Two more FFI tests
2024-07-28 Erick Gallesio <eg@stklos.net>
- Rewrote STk_mul2 without calling convert
2024-07-27 Erick Gallesio <eg@stklos.net>
- Rewrite STk_sub2 without calling convert
- Rewriting: Some simplification when adding a rational and an int
- Rewriting of ST_add2 in a more compact style
2024-07-26 Erick Gallesio <eg@stklos.net>
- A first version of STk_add2 which doesn't use the function convert
2024-07-23 Jeronimo Pellegrini <j_p@aleph0.info>
- Report C compiler version in configure script
2024-07-22 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-vm-doc'
- Suppressed the example I gave on %vm-config ...
- Merge branch 'vm-doc' of https://github.com/jpellegrini/STklos into jpellegrini-vm-doc
- Merge branch 'jpellegrini-doc-install'
- Merge branch 'doc-install' of https://github.com/jpellegrini/STklos into jpellegrini-doc-install
- Merge branch 'jpellegrini-readme'
2024-07-21 Jeronimo Pellegrini <j_p@aleph0.info>
- README: STklos works on Linux 6.x
- More information in QUICK-INSTALL.md
2024-07-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Include documentation for `%vm-config`
- Enhancements to stats-gathering documentation
2024-07-20 Erick Gallesio <eg@stklos.net>
- Fix Makefile.in when we do not have libgc installed
- Small change to permit compilation with tcc
- Merge branch 'jpellegrini-doc'
- Typo fix
- Merge branch 'doc' of https://github.com/jpellegrini/STklos into jpellegrini-doc
- Merge branch 'jpellegrini-stat'
- Fixed SIGSGEV when the dump file cannot be written
- Fixed two minor issues in %with-profile-data
2024-07-19 Erick Gallesio <eg@stklos.net>
- Define the macro %with-profile-data only when STAT_VM is defined
- Replaced the 3 functions %vm-collect... with a parameter object
- Force stats collection when using %with-profile-data
2024-07-18 Erick Gallesio <eg@stklos.net>
- Bug fix: Dump file was always a CSV for any value of format
- Suppress primitive %vm-has-stats?
- Bug fix: Produce a correct empty list when the SCM dump is empty
- Minor rewriting changes
- Minor typo fixes
- Merge branch 'stat' of https://github.com/jpellegrini/STklos into jpellegrini-stat
2024-07-17 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-vm-instrospection'
- %vm-config returns a P-list instead of a list
- Merge branch 'vm-instrospection' of https://github.com/jpellegrini/STklos into jpellegrini-vm-instrospection
- Merge branch 'jpellegrini-c-module-example'
- Add some information in the example and example/C-module READMEs
- Added the PR original Makefile as Makefile-sample
- Finished the rewriting of Makefiles to compile of C-module
2024-07-10 Erick Gallesio <eg@stklos.net>
- Bug fix: (- 0+0.0i 0.0) is "0.0+0.0i" and not "-0.0+0.0i"
- Merge branch 'jpellegrini-number-equal'
- Simulate TCO in do_compare
- Bug fix: equality between real and rational could be false
- Add a test on complex equality
- Added code for complex number in do_compare
2024-07-09 Erick Gallesio <eg@stklos.net>
- Simplified (a lot) the writing of do_compare
- Simplify writing of do_compare
- Bug Fix: In min and max, result was not +nan.0 if one arg is a NaN
- Added a test for inexact and exact comparison
- Fix: comparison of exacts and inexacts used unassigned variables
2024-07-05 Jeronimo Pellegrini <j_p@aleph0.info>
- Make equality tests more precise
2024-07-03 Erick Gallesio <eg@stklos.net>
- Various modifications to allow compilation without installation.
- Use variables defined in the Makefile
- Use the stklos-compile in the distribution tree
- Added the -q option when compiling the Scheme file
- Suppressed circular dependency
- Added the distclean target
- Deleted the original Makefile -- which is no more used
- Added a Makefile.in to use the options given at configure time
- Merge branch 'c-module-example' of https://github.com/jpellegrini/STklos into jpellegrini-c-module-example
2024-07-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-optimize-in-module'
- Merge branch 'optimize-in-module' of https://github.com/jpellegrini/STklos into jpellegrini-optimize-in-module
2024-06-26 Erick Gallesio <eg@stklos.net>
- Permit the dice.stk to take parameter from command line
- Changed the header comment of time.stk
- Merge branch 'jpellegrini-help'
- Moved the sentence about exiting at the end of the message
2024-06-24 Erick Gallesio <eg@stklos.net>
- Merge branch 'help' of https://github.com/jpellegrini/STklos into jpellegrini-help
- Merge branch 'jpellegrini-document-rewrite-rules'
- Merge branch 'document-rewrite-rules' of https://github.com/jpellegrini/STklos into jpellegrini-document-rewrite-rules
2024-06-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-example-dice'
- Shorten lines and typo fixes
- Add dice.stk to Makefile.am
- Merge branch 'example-dice' of https://github.com/jpellegrini/STklos into jpellegrini-example-dice
- Merge branch 'jpellegrini-minor'
- Add documentation of a more complex rewriter
- Export 3 new functions from the rewriter
- Allow modules as environment in the function find-symbol-in-env
- Change the documentation to not use non-exported compiler variables
- Add exports for rewriters functions
- Merge branch 'minor' of https://github.com/jpellegrini/STklos into jpellegrini-minor
2024-06-18 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-srfi-1'
- Merge branch 'srfi-1' of https://github.com/jpellegrini/STklos into jpellegrini-srfi-1
- Merge branch 'jpellegrini-tests-subsections'
- Merge branch 'tests-subsections' of https://github.com/jpellegrini/STklos into jpellegrini-tests-subsections
2024-06-12 Jeronimo Pellegrini <j_p@aleph0.info>
- Add an explanation for the constant in the CXR opcode
2024-05-29 Jeronimo Pellegrini <j_p@aleph0.info>
- Detect division by zero when inlining
- Example of module written in C and Scheme
2024-05-24 Jeronimo Pellegrini <j_p@aleph0.info>
- Add subsection to libs testing
2024-05-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-error'
- Suppressed volatile declaration for save_cur_proc with Clang
2024-05-23 Jeronimo Pellegrini <j_p@aleph0.info>
- Add comments to source rewriters
2024-05-23 Erick Gallesio <eg@stklos.net>
- Fix problems with bad coupling REG_CALL_PRIM and UNREG_CALL_PRIM
- Save the caller of an inlined primitive in a run_vm local variable
2024-05-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix the fix to lset<=
- Enhancement to help initial banner
2024-05-20 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-error'
- Don't use backticks when using '~S' or '~W' in errors
- Fix the %build-error-location function
2024-05-18 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix lset= in SRFI 1 (scheme list)
- Add comment to the implementation of in-module macro
2024-05-17 Jeronimo Pellegrini <j_p@aleph0.info>
- Optimize in-module for SCHEME
- Add CXR and INSCHEME to vm documentation
2024-05-16 Jeronimo Pellegrini <j_p@aleph0.info>
- Add one more example
2024-05-14 Jeronimo Pellegrini <j_p@aleph0.info>
- Document source rewriter in hacking.adoc
2024-05-14 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-minor'
- Merge branch 'minor' of https://github.com/jpellegrini/STklos into jpellegrini-minor
2024-05-13 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-simplify'
- Renamed compiler:allow-code-rewrite in compiler:source-rewrite
- Permit to pass the flag allow-code-rewrite to stklos{,-compile}
- Added a parameter object to allow/disallow code rewriting
- Take into account the environment when rewriting expression
- Added a source expression rewriter used before sexpr compilation
- Separate tests for SRFI-60 and SRFI-61 which were in the same file
2024-05-07 Jeronimo Pellegrini <j_p@aleph0.info>
- Tests for ill-formed LET
2024-05-07 Erick Gallesio <eg@stklos.net>
- Merge pull request #631 from jpellegrini/minor
2024-05-07 Erick Gallesio <eg@stklos.net>
- Renamed valid-let-bindings? in check-let-bindings
2024-05-07 Jeronimo Pellegrini <j_p@aleph0.info>
- Add improper-list? to the documentation
2024-05-07 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-LET-binding-issue'
- Better error message when a let{,*,rec} is not valid
- Small factorization
- Merge branch 'LET-binding-issue' of https://github.com/jpellegrini/STklos into jpellegrini-LET-binding-issue
- Merge branch 'hattya-threads'
- Merge branch 'threads' of https://github.com/hattya/STklos into hattya-threads
- Merge branch 'jpellegrini-improper-list'
2024-05-07 Akinori Hattori <hattya@gentoo.org>
- Fix build with --enable-threads=none
2024-05-05 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix valid-let-bindings?
- Add improper-list?
2024-05-04 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-conveniences'
- Shortened the error message in %make-inc-dec-push-body
- Merged pull request #626 from jpellegrini/conveniences
- Merge branch 'v210-error'
- For errors ~S and ~W are equivalent (they use write*)
2024-05-02 Erick Gallesio <eg@stklos.net>
- Merge pull request #625 from jpellegrini/time-msg
2024-05-02 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-conveniences'
- Insert convenience prim. 1+, 1-, push!, pop!, inc!, dec! and dolist
- Updated documentation of dotimes
- The dolist form can now return a result as dotimes
- Code cleaning
2024-05-02 Jeronimo Pellegrini <j_p@aleph0.info>
- Small enhancement to message
2024-05-02 Erick Gallesio <eg@stklos.net>
- Added tests for inc! and dec!
- Added inc! an dec! forms
- Reintroduced the push! macro in test/srfi/25.stk
- Added list-set! as the setter function of list-ref
2024-05-01 jpellegrini <j_p@aleph0.info>
- Merge branch 'egallesio:master' into stat
2024-05-01 Erick Gallesio <eg@stklos.net>
- Added test for generalized push! and pop!
- Extended the push! and pop! macros to accept list as first parameter
- Changed the order of parameters of push! macro
- Merge branch 'conveniences' of https://github.com/jpellegrini/STklos into jpellegrini-conveniences
- Fixed a test now that (atan 0 0) is an error
- Changed the output format of the time primitive
- (atan 0 0) is now an error (instead of returning NaN)
- Merge branch 'jpellegrini-gc-accounting'
2024-04-24 Erick Gallesio <eg@stklos.net>
- Changed the documentation of time macro
- Renamed %thread-allocations-reset! in %thread-allocation-reset!
- Merge branch 'master' into jpellegrini-gc-accounting
- Merge branch 'jpellegrini-atan'
- Fixed gcc and clang warnings
- Merge branch 'atan' of https://github.com/jpellegrini/STklos into jpellegrini-atan
- Small factorization
- Merge branch 'log-exact-one' of https://github.com/jpellegrini/STklos
- Reintroduced comparison functions (= <, ...) in *inline-table*
2024-04-18 Erick Gallesio <eg@stklos.net>
- Add GC counting in the time macro
- Added primitive %gc-stats
2024-04-18 Jeronimo Pellegrini <j_p@aleph0.info>
- Add tests for (log 1 x)
2024-04-17 Jeronimo Pellegrini <j_p@aleph0.info>
- Make (log 1 x) return exact zero
- Fix (atan 0.0 0) => +pi/2
2024-03-31 Erick Gallesio <eg@stklos.net>
- Update time macro to use exact-clock
- Added the function exact-clock which returns an exact number.
- Rewrite time macro (do not use let-values anymore)
- Use a C parameter object to count allocations
2024-03-28 jpellegrini <j_p@aleph0.info>
- Merge branch 'master' into vm-instrospection
2024-03-28 Erick Gallesio <eg@stklos.net>
- Merge branch 'gc-accounting' of https://github.com/jpellegrini/STklos into jpellegrini-gc-accounting
- Merge branch 'jpellegrini-trig'
- Merge branch 'trig' of https://github.com/jpellegrini/STklos into jpellegrini-trig
- Comment the test on STk_primordial which was not so clear
2024-03-27 Jeronimo Pellegrini <j_p@aleph0.info>
- Make (acos 1) return exact zero
2024-03-25 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-apply'
- Suppressed code for generating IN-APPLY instruction
- Merge branch 'jpellegrini-asciidoctor'
- Updated message about documentation reconstruction
- Merge branch 'asciidoctor' of https://github.com/jpellegrini/STklos into jpellegrini-asciidoctor
2024-03-08 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-parameter-peephole'
- Add peephole-optimizer flag to stklos-compile command
- Add documentation for compiler:peephole-optimizer
- Merge branch @jpellegrini 'parameter-peephole' + minor rewrites
2024-03-06 Erick Gallesio <eg@stklos.net>
- Merge branch 'equiv'
- Added a new instruction for inlining mem{q,v,ber}
- Added a new instruction for inlining ass{q,v,oc}
- Adding back the generation of IN_EQUAL VM instruction
- Comment the equivp function
- Small code reorganization
- Get rid of the simple-equal function
2024-03-03 Erick Gallesio <eg@stklos.net>
- Suppressed the redefinitions of member and assoc
- Small refactoring
- Suppressed the file lib/equiv.stk (code for circular equal? in SCM)
- Rewrite the R7RS equal? in C
2024-03-02 Erick Gallesio <eg@stklos.net>
- Added the %trace function for debugging
- Suppressed the simple quote from readline quote chars
- Merge branch 'jpellegrini-math-optimize'
- Inline tables are list and no more A-lists
- Do not optimize equal? calls
- Avoid to call eval when folding constants
2024-02-27 Erick Gallesio <eg@stklos.net>
- Protect the evaluation during constant folding
- Enhance constant folding
2024-02-25 Erick Gallesio <eg@stklos.net>
- Rewrote square in C and add it to inlinable functions
- Added back the disappeared cxxxr primitives in the inline table
- Displaced compiler:inline-common-functions definition in compflags
- Simplified the code to initialize the compiler inline tables
2024-02-24 Erick Gallesio <eg@stklos.net>
- Adjusted code of the PR to current version of compiler
- Merge branch 'math-optimize' of https://github.com/jpellegrini/STklos into jpellegrini-math-optimize
2024-02-12 Erick Gallesio <eg@stklos.net>
- Suppressed unused variable in C source
- Merge branch 'v210-number'
- Documentation update
- Suppressed gcc warning
- Merge branch 'jpellegrini-exact-integer-log'
- Reduced the number of tests for exact-integer-log
- Merge branch 'exact-integer-log' of https://github.com/jpellegrini/STklos into jpellegrini-exact-integer-log
- Added some tests on numbers
2024-02-11 Erick Gallesio <eg@stklos.net>
- Fix: Division of 0 or 0.0 by a complex was incorrect
2024-02-09 Erick Gallesio <eg@stklos.net>
- Adding tests for complexes with infinities
- Take care of infinites in or STk_mul2 or STk_div2
- Merge branch 'v210-number'
- Suppressed compilation warnings
2024-02-08 Erick Gallesio <eg@stklos.net>
- Merge branch 'log2' of https://github.com/jpellegrini/STklos into v210-number
2024-02-03 Erick Gallesio <eg@stklos.net>
- Bug Fix: bad format in an error message (%S instead of ~S)
2024-01-29 Erick Gallesio <eg@stklos.net>
- Changed the printed form of iset and fxmapping.
2024-01-20 Erick Gallesio <eg@stklos.net>
- Suppressed a compilation warning
- Merge branch 'jpellegrini-segfault-bitvectors'
- Merge branch 'segfault-bitvectors' of https://github.com/jpellegrini/STklos into jpellegrini-segfault-bitvectors
- Fixed an issue signaled in PR #619
2024-01-19 Jeronimo Pellegrini <j_p@aleph0.info>
- Add tests for bitvector class-of and describe
2024-01-18 Jeronimo Pellegrini <j_p@aleph0.info>
- Customize class-of and describe for bitvectors
2024-01-17 Erick Gallesio <eg@stklos.net>
- Refactoring of read_rec in read.c
2024-01-15 Erick Gallesio <eg@stklos.net>
- Merge branch 'boot-file'
- Changed the way the constants are strored in boot.c
- Added some tests to read bitvector with extended syntax #*...
- Add #* syntax to SRFI-178
- Merge branch 'new-read'
- Merge branch 'jpellegrini-srfi-178'
- Fixed small issues in 178.c
- Merge branch 'srfi-178' of https://github.com/jpellegrini/STklos into jpellegrini-srfi-178
- Merge branch 'hattya-ldflags'
- Add primitive %add-sharp-reader to add # syntax in Scheme
- Corrected a test for SRFI-160
- Enhanced uniform vectors
2024-01-15 Akinori Hattori <hattya@gentoo.org>
- Respect LDFLAGS
2024-01-15 Erick Gallesio <eg@stklos.net>
- End of sharp reader Refactoring
- Fixed various issues with read.c rewriting
2024-01-11 Erick Gallesio <eg@stklos.net>
- Start the refactoring of the sharp # reader (Issue #434)
- Permit to use hash tables in C
2024-01-05 Erick Gallesio <eg@stklos.net>
- Fixed a Makefile issue
- Merge branch 'jpellegrini-srfi-232'
- Merge branch 'srfi-232' of https://github.com/jpellegrini/STklos into jpellegrini-srfi-232
- Don't use UTF8 string when testing regexp without Unicode
- Suppressed the hack on the ':' symbol in SRE
- Merge branch 'srfi-115'
- Moved (srfi 115) to (scheme regex)
- Fixed utf8->string
2024-01-03 Erick Gallesio <eg@stklos.net>
- Updated copyright date displayed in REPL.
- Merge branch 'srfi-14-rewrite' into srfi-115
- Add OO support for char-sets
- Now STk_extended_class_of accepts a class or a function
- Changed printing of char-sets and add a reader for char-sets
- Character sets are now printed as char-sets (and not isets)
- Added the %char-set? function in lib/stklos/itrie.c
2024-01-02 Erick Gallesio <eg@stklos.net>
- Add support in itrie.c for char-sets
- Fixed dependencies problem on charset.so
2023-12-19 Erick Gallesio <eg@stklos.net>
- Updated the Unicode data files
- Add Unicode blank characters
- Added title-case to charsets
2023-12-18 Erick Gallesio <eg@stklos.net>
- Add the missing culprit in a message
- Modified a test for SRFI-14 which is not OK with full-unicode
- Rewrote (scheme charset) using Integer sets
2023-12-15 Erick Gallesio <eg@stklos.net>
- Suppressed urrogate pairs from the all list and added punctuations
2023-12-14 Erick Gallesio <eg@stklos.net>
- Use uniformly utf8_char for UTF8 characters
- Added a new utf8 table containing all the valid UTF8 characters.
2023-12-12 Erick Gallesio <eg@stklos.net>
- Added support in C for UTF8 standard charsets
2023-12-10 Erick Gallesio <eg@stklos.net>
- Added SRFI-115 tests
2023-12-09 Erick Gallesio <eg@stklos.net>
- Re-import regexp STklos primitives in regexp tests
- Simplify code for computing the list of exports of (scheme vector)
- Be sure that the regexp-replace used in vector is STklos one
2023-12-08 Erick Gallesio <eg@stklos.net>
- Added SRFI-115 (Scheme Regular expressions)
2023-12-06 Erick Gallesio <eg@stklos.net>
- Merge pull request #617 from jpellegrini/address
2023-12-06 Jeronimo Pellegrini <j_p@aleph0.info>
- Extensive check for crashes in #p
2023-12-06 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-address'
- Fix: be more strict with address-ref
2023-12-05 Erick Gallesio <eg@stklos.net>
- Moved STk_dot and STk_close_par in read.c
- Suppressed LAST_CONST in stklos.h
2023-12-04 Erick Gallesio <eg@stklos.net>
- Code factorization for controlling the validity of an address
- Fix: set errno to 0 before calling strtoul
- Suppressed two compilation warnings
- Merge branch 'address' of https://github.com/jpellegrini/STklos into jpellegrini-address
- Merge branch 'jpellegrini-apropos'
- Refactoring: apropos is is now in (stklos apropos) module
- Updated documentation of apropos
- Adapted tests for apropos command
- Changed the way symbol are searched by apropos
- Suppressed parameters (internal, imported, exported) from apropos
- Avoid useless cons
2023-11-30 Erick Gallesio <eg@stklos.net>
- Bug fix: module-imports for libraries may contain STklos module
- Merge branch 'apropos' of https://github.com/jpellegrini/STklos into jpellegrini-apropos
- Merge branch 'jpellegrini-help-enhancement'
2023-11-29 Erick Gallesio <eg@stklos.net>
- Added documentation on @* and @1, ... @5
- Make @ an alias on @1 (rather than a copy)
2023-11-27 Jeronimo Pellegrini <j_p@aleph0.info>
- Return exact log for any power of 2
- log in base 2: deal with some more cases
- Compute exact log when base is a power of 2 (also faster)
2023-11-24 Erick Gallesio <eg@stklos.net>
- Restored the open command and added the browse REPL command
- Shorten description of ls REPL command to be under 80 chars limit.
- Merge branch 'help-enhancement' of https://github.com/jpellegrini/STklos into jpellegrini-help-enhancement
- Merge branch 'jpellegrini-srfi-27-new'
2023-11-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Bring back newer SRFI-27
- Reformatting and fixing a comment
- Adjust GCD and LCM tests
- More power to constant folding!
- Use a simplifying macro for creating the inline table
- Get tick() outside of run_vm() !
- Typos and editorial fixes
- Make stats collecting a bit more precise
- Add start and stop procedures for stat gathering
- Add a profiling macro
- Add documentation for VM profiler
- Prepare vm.c to profile itself
- Faster version of exact-integer-log
- Add tests to exact-integer-log
- Add exact-integer-log
- Add a parameter to control the peephole optimizer.
- Enhancements to REPL commands
2023-11-20 Erick Gallesio <eg@stklos.net>
- Going back on // build
- Restored GitHub compiling workflow to us // builds
- Rewrite os-name in C
- Merge branch 'master' of github.com:egallesio/STklos
- Updated srfi/27 (once again)
2023-11-20 Erick Gallesio <eg@stklos.net>
- Update ccpp.yml
2023-11-20 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-enhance'
- Documentation rebuilt
2023-11-11 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-enhance-doc' into v210-enhance
- Small changes in the organization for adoc libraries for doc.
- Updated documentation about the global lock in the VM
- Changed the name of the global lock used in vm.c
- Updated the VM documentation about global variables
2023-11-10 Erick Gallesio <eg@stklos.net>
- Small modifictions to enhance the documentation
2023-11-08 Erick Gallesio <eg@stklos.net>
- Added REPL variables @, @1, @2, ...
- Added documentation for apropos and manual REPL commands
- Merge branch 'v210-enhance-unalias' into v210-enhance
- Fixed various problems when building STklos without thread support
- Suppressed warning when compiling without threads support
- Suppressed all the stuff around checked_globals array
2023-11-07 Erick Gallesio <eg@stklos.net>
- Reinstalled global variables accesses
2023-11-02 Erick Gallesio <eg@stklos.net>
- Code cleaning again
2023-11-01 Erick Gallesio <eg@stklos.net>
- Code cleaning. Read & write globals using macros defined in vm.h
- Reused the old implementation of SRFI-27 (in Scheme)
2023-10-31 Erick Gallesio <eg@stklos.net>
- In SRFI-230 (Atomic Operations), export nothing if no thread support
2023-10-29 Erick Gallesio <eg@stklos.net>
- STk_hash_set_variable => STk_hash_define_variable
- Moved globals management to the file vm.c
- Suppressed useless parameter 'rdonly' to STk_hash_set_alias
2023-10-28 Erick Gallesio <eg@stklos.net>
- Make mutex and index of global storage static in STk_reserve_store
- Suppressed the tc_global object type
- Fixed aliasing bug.
2023-10-27 Erick Gallesio <eg@stklos.net>
- Added tests to exhibit aliasing problems we have in STklos
- Updated the function STk_gdb to print Scheme values under GDB
2023-10-25 Erick Gallesio <eg@stklos.net>
- Preliminary work for unaliasing (phase 1: unoptimize global accesses)
2023-10-24 Erick Gallesio <eg@stklos.net>
- Suppressed unused function STk_symbol_alias
2023-10-23 Erick Gallesio <eg@stklos.net>
- Added (the forgotten) apropos REPL command
- Trim the value read for REPL commands
- Added REPL command ,manual (or ,m)
- Added the primitives default-browser, manual, open-in-browser
2023-10-14 Erick Gallesio <eg@stklos.net>
- New prim. open-in-browser, open-manual and parameter stklos-browser
2023-10-13 Erick Gallesio <eg@stklos.net>
- Added primitive install-path
2023-10-12 Erick Gallesio <eg@stklos.net>
- Add the directories defined at configure time in CONF_SUMMARY
- Don't produce (HTML) customizing IDs when building PDF document
- Added function document-eval to stklos-pp
- Fixed the way custom IDs are generated.
2023-10-09 Erick Gallesio <eg@stklos.net>
- Added custom ID to all the entries in manual page
2023-10-08 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-enhance-help' into v210-enhance
- Moved compiler:inline-common-functions in compflags.stk
- Use the new define-parameter for booting STklos
2023-10-07 Erick Gallesio <eg@stklos.net>
- Added syntax define-parameter
2023-10-05 Erick Gallesio <eg@stklos.net>
- Fix in help without parameter and code simplification
- Verify parameters type for %make-syntax
- Added a name to parameters objects
- Added the <parameter> class
2023-10-04 Erick Gallesio <eg@stklos.net>
- Corrected help inconsistencies
- Make %syntax-name return a string as %procedure-name
- Moved lib/repl.stk in a separate module in lib/stklos/repl.stk
- Added ,ls to REPL command.
- Small rewrite of repl-add-command
- Reorganization of documentation about REPL
- Corrected a bad link in documentation
- Added documentation for repl-add-command
- Permit to have STklos specific parts in the ~/.inputrc readline file
2023-10-03 Erick Gallesio <eg@stklos.net>
- Force procedure name when an anonymous lambda is set.
- Added open REPL command
- Added command import and require-feature.
- Added some REPL commands (time describe & expand)
- The repl command may have a parameter
2023-10-02 Erick Gallesio <eg@stklos.net>
- The repl command may have a parameter
- Reimplemented the do-repl-command function
2023-10-02 jpellegrini <j_p@aleph0.info>
- Merge branch 'egallesio:master' into address
2023-10-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-enhance'
- Merge branch 'jpellegrini-typos'
2023-09-28 Jeronimo Pellegrini <j_p@aleph0.info>
- Use "yes" instead of "asciidoctor"
- configure: report if asciidoctor was found
2023-09-23 Erick Gallesio <eg@stklos.net>
- Updated autoconf companions scripts
- Modified the way the maximum recursive calls for equal? is built
2023-09-22 Erick Gallesio <eg@stklos.net>
- Adaptations for compiling STklos with tcc
2023-09-18 Erick Gallesio <eg@stklos.net>
- describe on a fixnum prints its value in other bases
- Added classes <fixnum> and <bignum>
- Simplified code
- Diminish MAX_TOKEN_SIZE and renamed it in TOKEN_SIZE
- Don't limit the size of tokens
- Don't use MAX_TOKEN_SIZE for printing strings
- Rewrote read_address
2023-09-16 Erick Gallesio <eg@stklos.net>
- Merge branch 'v210-build'
- Fixed installation dir for .h files (+ respect --includedir option)
- Suppressed '/' behind DESTDIR in Makefiles
2023-09-14 Erick Gallesio <eg@stklos.net>
- Permit the installation in chrooted environment
- Fixed tag to "" when we are in a git tree without previous tag
2023-09-12 Erick Gallesio <eg@stklos.net>
- Flip to unstable version
- STklos 2.00 release
2023-09-11 Erick Gallesio <eg@stklos.net>
- Merge branch 'v200'
- Use the ".so" suffix for the readline completer on macOS
- Modified start-interactive-gtk for macOS
- Updated documentation
- Merge branch 'jpellegrini-compiler-error'
- Merge branch 'compiler-error' of https://github.com/jpellegrini/STklos into jpellegrini-compiler-error
- Merge branch 'small-fixes' of https://github.com/jpellegrini/STklos
- Merge branch 'small-fixes' of https://github.com/jpellegrini/STklos into v200
2023-09-10 Erick Gallesio <eg@stklos.net>
- Fixed a compilation warning
- Add a special case for start-interactive-gtk for libedit under macOS
- Corrected include path when --with-provided-regexp is used
- make install will install now a non stripped version of stklos
- Fix Makefile install dirs.
2023-09-05 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix plural in error message
2023-09-05 Erick Gallesio <eg@stklos.net>
- Updated NEWS.md
- Merge branch 'master' into v200
- Use XDG standard location for stklosrc file
- Added pronunciation od STklos (issue #576)
2023-09-05 Jeronimo Pellegrini <j_p@aleph0.info>
- Include missing argument to compiler-error
2023-09-04 jpellegrini <j_p@aleph0.info>
- Merge branch 'egallesio:master' into srfi-178
- Merge branch 'egallesio:master' into address
- Merge branch 'egallesio:master' into srfi-232
2023-09-04 Erick Gallesio <eg@stklos.net>
- Merge pull request #602 from jpellegrini/syntax-rules-improper-list
2023-09-04 Erick Gallesio <eg@stklos.net>
- Merge new boot file
- Merge branch 'master' of github.com:egallesio/STklos
- Merge branch 'syntax-rules-improper-list' of https://github.com/jpellegrini/STklos
- Merge branch 'jpellegrini-let-syntax-small-fix'
- Merge branch 'let-syntax-small-fix' of https://github.com/jpellegrini/STklos into jpellegrini-let-syntax-small-fix
- Fix the code for eqv? on complex numbers + Modified 2 tests
- Optimized the number of tests on eqv? on numbers
- Fix a test for eqv? on NaNs (one more time)
- Fix: (fl- 0.0) returns -0.0 instead of +0.0
2023-09-03 Erick Gallesio <eg@stklos.net>
- Fix (eqv? 0.0 -0.0)
- Merge branch 'jpellegrini-negative-zero'
2023-09-03 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix a small glitch in `let-syntax`
2023-09-03 Erick Gallesio <eg@stklos.net>
- Use strings for some tests since (falsely) (eqv? 0.0 -0.0) is #t
- Merge branch 'negative-zero' of https://github.com/jpellegrini/STklos into jpellegrini-negative-zero
2023-09-02 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-complex-abs'
- Replaced calls to magnitude bay abs in number.c
- Adaped documentation of abs
- Simplified code of primitive magnitude (direct call to abs)
- Merge branch 'complex-abs' of https://github.com/jpellegrini/STklos into jpellegrini-complex-abs
- Merge branch 'jpellegrini-bignum-sqrt'
- Code refactoring
- Merge branch 'bignum-sqrt' of https://github.com/jpellegrini/STklos into jpellegrini-bignum-sqrt
- Merge branch 'jpellegrini-sqrt-precision'
- Code refactoring
- Suppressed gcc warnings
- Merge branch 'sqrt-precision' of https://github.com/jpellegrini/STklos into jpellegrini-sqrt-precision
2023-09-01 Jeronimo Pellegrini <j_p@aleph0.info>
- Add SRFI 232 Flexible curried procedures
- Aesthetical adjustments
- syntax-rules: accept ellipsis with improper lists
2023-09-01 Erick Gallesio <eg@stklos.net>