-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathChangeLog
More file actions
2150 lines (1730 loc) · 83 KB
/
Copy pathChangeLog
File metadata and controls
2150 lines (1730 loc) · 83 KB
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
---
--- ChangeLog since STklos 2.00 release (see ChangeLog.old for older changes)
---
2026-02-10 Erick Gallesio <eg@stklos.net>
- STklos 26.0 Release
2026-02-08 Erick Gallesio <eg@stklos.net>
- Suppress the STk_make_frame function
- Merge branch 'jpellegrini-doc-continuations'
- Merge branch 'jpellegrini-gc-new'
2026-02-08 Jeronimo Pellegrini <j_p@aleph0.info>
- Update libgc
2026-02-05 Erick Gallesio <eg@stklos.net>
- Updated the README for GTklos (now that the library path is guessed)
- Add some information about the construction of GTKlos in QUICK-INSTALL.md
- Fix a problem with GTK and locales
2026-02-04 Erick Gallesio <eg@stklos.net>
- Fix some non UTF-8 characters that were remaining in files
- Fix dialog demo
- Merge branch 'gtklos-path'
- Guess the path for GTk libraries to make GTklos installation simpler
2026-02-02 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-not-not'
- Verify that not has not been oveloaded in double not optimization
2026-01-26 Erick Gallesio <eg@stklos.net>
- Small refactoring of IF rewriter
- Fix: the old optimization did't work anymore
- Merge branch 'not-not' of github.com:jpellegrini/STklos into jpellegrini-not-not
- Merge branch 'jpellegrini-lcm'
- Small rewrite
- Merge branch 'lcm' of github.com:jpellegrini/STklos into jpellegrini-lcm
- Merge branch 'jpellegrini-optimize-rational-comparison'
- Merge branch 'optimize-rational-comparison' of github.com:jpellegrini/STklos into jpellegrini-optimize-rational-comparison
- Merge branch 'jpellegrini-zero'
- Merge branch 'zero' of github.com:jpellegrini/STklos into jpellegrini-zero
- Merge branch 'fix-number'
- Fix double2rational when using GMP light
2026-01-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Test 0/0
- Fix 0/0 (which should not be zero)
2026-01-13 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-srfi-255-single-dir'
- New boot.c
2026-01-12 Erick Gallesio <eg@stklos.net>
- Merge branch 'srfi-225-single-dir' of github.com:jpellegrini/STklos into jpellegrini-srfi-255-single-dir
- Added function readline-bind!
2026-01-07 Erick Gallesio <eg@stklos.net>
- Rewrite readline-set-option!
2026-01-06 Erick Gallesio <eg@stklos.net>
- Merge branch 'fix-slib'
- Permit to load "lib/slib" (or SRFI-96) even if SLIB is not found
- Better message in require/provide when parameter is not a string
2026-01-05 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-expt-small'
- Added tests for (expt real bignum) where the result is 0.0 and -0.0
- Take care of the sign of 0.0 with (expt small big)
- Merge branch 'expt-small' of github.com:jpellegrini/STklos into jpellegrini-expt-small
- Merge branch 'jpellegrini-srfi-101'
- Added rlist to the supported R7RS large libraries
- Invalidated the SRFI-101 primitives documentation
2026-01-04 Erick Gallesio <eg@stklos.net>
- Add the (missing) new SRFI-101 test file
- Delete SRFI-101 tests the first tests and place it among other the SRFI tests
2026-01-03 Erick Gallesio <eg@stklos.net>
- Fix a dependency rule in Makefile.am
- Merge branch 'srfi-101' of github.com:jpellegrini/STklos into jpellegrini-srfi-101
2025-12-24 Jeronimo Pellegrini <j_p@aleph0.info>
- (expt x bignum) is zero if -1.0 < x < 1.0 and x is inexact
2025-12-18 Erick Gallesio <eg@stklos.net>
- Merge branch 'Retropikzel-master'
- Use a parameter object for the list of provided files
- Replaced some remaining (require "srfi-N") by (require "srfi/N")
- Simpilfied (a lot) the require and provide code.
- Symplified all the require/provide stuff
- Fixed the issue with SRFI-96
2025-12-15 Erick Gallesio <eg@stklos.net>
- Attribute authorship of tests/test-cond-expand to Retropikzel
- WIP: modified require and provide srfi-N is translated in srfi/N
2025-12-12 retropikzel <retropikzel@iki.fi>
- Fix the test check part
- Add long cond-expand test
2025-12-11 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-gcd-abs'
- Merge branch 'gcd-abs' of github.com:jpellegrini/STklos into jpellegrini-gcd-abs
- Added dependencies rules for libraries written in C and Scheme
2025-12-10 Erick Gallesio <eg@stklos.net>
- Merge branch 'autoload'
- Import only the triggering symbols instad of the autoload symbol list
- Add documentation for autoload form.
- Merge branch 'cyclic-box'
- Restrict the cycle detection to the mono-valued cells
- Fix a bug when printing cyclic boxes
- Merge branch 'jpellegrini-srfi-127'
- Restore back the test on nullity of one of the sequences
2025-12-09 Erick Gallesio <eg@stklos.net>
- Merge branch 'srfi-127' of github.com:jpellegrini/STklos into jpellegrini-srfi-127
- Merge branch 'big-cond-expand'
- Fix: Forgot to add a provide in "srfi/175.stk" (it was empty)
2025-12-07 Jeronimo Pellegrini <j_p@aleph0.info>
- Optimize lseq=?
2025-12-06 Jeronimo Pellegrini <j_p@aleph0.info>
- Add SRFI 101: Purely Functional Random-Access Pairs and Lists
2025-12-04 Erick Gallesio <eg@stklos.net>
- Changed the way we test if a symbol has been defined in an autoload
- apropos and describe autoloading update
- getopt and help autoloading updated
- trace and pretty-print autoloading updated
- srf-27 and srfi-48 autoloading updated
- Added the missing file "autoloads.stk" to the list of boot files
2025-12-03 Erick Gallesio <eg@stklos.net>
- When autoloading a library, Use import only for the specified symbols
- Merge autoload and autoimport.
2025-12-02 Jeronimo Pellegrini <j_p@aleph0.info>
- Remove extra absolute computations in gcd2_fixnum
2025-11-28 Erick Gallesio <eg@stklos.net>
- Lower the value of the wait in the test of SRFI-216
- Fixed tanh for complex numbers
- Fixed the test and the condition for atanh with a bignu parameter
- Merge branch 'jpellegrini-srfi-264'
- Deletion of 1200 additional duplicate tests
2025-11-25 Erick Gallesio <eg@stklos.net>
- Merge branch 'srfi-264' of github.com:jpellegrini/STklos into jpellegrini-srfi-264
2025-11-24 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-atanh-fix'
- Merge branch 'atanh-fix' of github.com:jpellegrini/STklos into jpellegrini-atanh-fix
2025-11-18 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix tanh for large numbers
2025-11-17 Erick Gallesio <eg@stklos.net>
- Update boot.c
- Merge branch 'jpellegrini-optimize-srfi-1'
- Fix: verify that the count is a valid integer
- Fix: accept no more than 3 parameters for iota
- Fix: verify for constant lists for take!, split-at! and take-right!
- Fix: split-at and split-at! on circular lists.
2025-11-12 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-optimize-repeat'
- Merge branch 'optimize-repeat' of github.com:jpellegrini/STklos into jpellegrini-optimize-repeat
- Furthermore factorization
- Factorize error messages
- Fix error message
- Suppressed the inlin qualifier for car_cdrs
- Use reverse! instead of reverse in car_cdrs
2025-11-08 Erick Gallesio <eg@stklos.net>
- Add prefix `STk_" to list_type_and_length since it is now exported
- Fix: Bad comparison and bad print format in a validation test
- Merge branch 'optimize-srfi-1' of github.com:jpellegrini/STklos into jpellegrini-optimize-srfi-1
2025-11-05 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-acos'
- Merge branch 'acos' of github.com:jpellegrini/STklos into jpellegrini-acos
- Merge branch 'jpellegrini-max-min'
- Simplified the code of min/max
- Merge branch 'max-min' of github.com:jpellegrini/STklos into jpellegrini-max-min
2025-11-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-srfi-239'
- Added some tests to SRFI-239
- Fixed a test for SRFI-239
- Merge branch 'srfi-239' of github.com:jpellegrini/STklos into jpellegrini-srfi-239
- Merge branch 'jpellegrini-tiny-changes'
- Merge branch 'tiny-changes' of github.com:jpellegrini/STklos into jpellegrini-tiny-changes
- Merge branch 'jpellegrini-small-opt'
- Simplified a bit more double2rational function
- Merge branch 'small-opt' of github.com:jpellegrini/STklos into jpellegrini-small-opt
- Merge branch 'jpellegrini-bignum-fits-double'
- Merge branch 'bignum-fits-double' of github.com:jpellegrini/STklos into jpellegrini-bignum-fits-double
- Fix: map or for-each with a non procedure did not yield an error
- Merge branch 'jpellegrini-fold-reduce'
- Merge branch 'jpellegrini-fold-reduce'
- Small rewrite of fold/reduce
2025-10-31 Jeronimo Pellegrini <j_p@aleph0.info>
- Don't call sub2 when not needed
- Compact and more readable code
2025-10-31 Erick Gallesio <eg@stklos.net>
- Make the fold function static
2025-10-31 Erick Gallesio <eg@stklos.net>
- Small rewrite of logical.stk
- Merge branch 'fold-reduce' of github.com:jpellegrini/STklos into jpellegrini-fold-reduce
2025-10-29 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix acos for numbers outside [-1, +1]
2025-10-27 Jeronimo Pellegrini <j_p@aleph0.info>
- Use BIGNUM_FITS_DOUBLE instead of BIGNUM_FITS_INTEGER
2025-10-22 Jeronimo Pellegrini <j_p@aleph0.info>
- Max/min: do not compare complexes
- Optimize repeat
2025-10-22 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-pcre2'
- Added pcre2 10-47 missing files
- Merge branch 'pcre2' of github.com:jpellegrini/STklos into jpellegrini-pcre2
2025-10-22 Jeronimo Pellegrini <j_p@aleph0.info>
- Update PCRE2 to 10.47
2025-10-19 Erick Gallesio <eg@stklos.net>
- Typo
- Merge branch 'jpellegrini-env-message'
- Merge branch 'env-message' of github.com:jpellegrini/STklos into jpellegrini-env-message
- Merge branch 'jpellegrini-libgc'
- Merge branch 'libgc' of github.com:jpellegrini/STklos into jpellegrini-libgc
- Merge branch 'jpellegrini-degree-radians-precision'
- Merge branch 'degree-radians-precision' of github.com:jpellegrini/STklos into
jpellegrini-degree-radians-precision
2025-10-19 Jeronimo Pellegrini <j_p@aleph0.info>
- Update libgc to 8.2.10
2025-10-19 Erick Gallesio <eg@stklos.net>
- Shorten message (< 80 char) for stklos-compile
2025-10-17 Jeronimo Pellegrini <j_p@aleph0.info>
- Make degrees->radians and radians->degrees more precise
2025-10-15 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix bad environment message
2025-10-15 Erick Gallesio <eg@stklos.net>
- Factorize errors in require / provide
- Merge branch 'lisp-complex'
- Added documentation on the #c(x y) notation
- Suppress the declaration of STk_make_comple_number
- Added some tests on numbers using CL complex notation
- Accept complex number with the CL notation: #c(1 2)
2025-10-13 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-provide'
- Added documentation on require behavior after slib is loaded.
- Supress function require
- Fix the test on non strings for `require`
- Merge branch 'provide' of github.com:jpellegrini/STklos into jpellegrini-provide
2025-10-06 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-sqrt'
- Merge branch 'sqrt' of github.com:jpellegrini/STklos into jpellegrini-sqrt
- Shorten message for icall objects
- Merge branch 'jpellegrini-integer-division-message'
- Merge branch 'integer-division-message' of github.com:jpellegrini/STklos into jpellegrini-integer-division-message
- Fix the defaut lib when for pcre whan pkgconf is not installed
2025-10-04 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-ellipsis-patterns'
- Merge branch 'ellipsis-patterns' of github.com:jpellegrini/STklos into jpellegrini-ellipsis-patterns
- Merge branch 'jpellegrini-pcre'
- Merge branch 'pcre' of github.com:jpellegrini/STklos into jpellegrini-pcre
- Merge branch 'jpellegrini-ffi'
- Renamed wasm32 directory in wasm
- Merge branch 'ffi' of github.com:jpellegrini/STklos into jpellegrini-ffi
2025-10-03 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix fxsqrt and optimize exact-integer-sqrt
2025-10-02 Erick Gallesio <eg@stklos.net>
- Merge branch 'inline-pairp'
- Add inlining of primitive pair?
2025-10-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'newenv'
- We can now evaluate an expression in a local (rather global) env.
- Fix the environment printing + Add primitive %make-environment
- WIP: New type of object for environment
2025-09-26 Jeronimo Pellegrini <j_p@aleph0.info>
- Update libffi to 3.5.2
- Update PCRE2 to 10.46
2025-09-13 Jeronimo Pellegrini <j_p@aleph0.info>
- Implement ellipsis escaping, as per R7RS
2025-09-08 Jeronimo Pellegrini <j_p@aleph0.info>
- More informative error message in integer division error
2025-09-08 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-flonum-issue'
- Add a handler for constant folding
- Merge branch 'flonum-issue' of github.com:jpellegrini/STklos into jpellegrini-flonum-issue
- Merge branch 'if-optim'
2025-09-06 Erick Gallesio <eg@stklos.net>
- Fix: JUMP-NUMEQ was never generated.
- Peephole: IM-NOT + JUM-FALSE-V => JUMP-TRUE-V
- Suppress useless begin in while and until
- Added new instruction JUMP-FALSE-V
- Merge branch 'jpellegrini-flonum-sqrt'
- Merge branch 'flonum-sqrt' of github.com:jpellegrini/STklos into jpellegrini-flonum-sqrt
- Merge branch 'jpellegrini-let-syntax'
- Simplify messages in check-clause
2025-09-05 Jeronimo Pellegrini <j_p@aleph0.info>
- More tests for infinities in integer division
2025-09-04 Jeronimo Pellegrini <j_p@aleph0.info>
- Handle infinities in complex sqrt
- Fix (sqrt -inf.0)
- Fix crash on integer division with infinities
2025-09-03 Erick Gallesio <eg@stklos.net>
- Rewrite check-clause as a suite of tests rather than a cond
2025-09-01 Erick Gallesio <eg@stklos.net>
- Integrate and small rewrite of @jpellegrini check-clauses
- Merge branch 'let-syntax' of GH:jpellegrini/STklos into jpellegrini-let-syntax
- Merge branch 'let-syntax-new'
- Changed the tests in test-macros (#%let-syntax -> let-syntax)
- Added tests to compile-%%let-syntax function
2025-08-28 Erick Gallesio <eg@stklos.net>
- Small rewrite of %macro-expand
- When a macro is expanded by the compiler errors are now trapped
- Updated comments in MBE
2025-08-27 Erick Gallesio <eg@stklos.net>
- Oversimplified implementation of let-syntax
- Merge branch 'master' into let-syntax-new
2025-08-21 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-icall'
- Small typo fixes + updating html
- Merge branch 'icall' of github.com:jpellegrini/STklos into jpellegrini-icall
- Merge branch 'read-icall'
- Small change in read_word
2025-08-20 Erick Gallesio <eg@stklos.net>
- Add tests for keywords/symbols which start with a bar
- Permits to have symbols whose first character is a '#'
- Permit to have bars in icall names
- Fixed Issue #817: Using #% as a value triggers panic
- Merge branch 'jpellegrini-any-every'
- Bug fix: any and every may enter in an infinite loop
- Make any_every + some fomatting
- Optimize boolean=? and small rewrite of symbpl=?
- Merge branch 'any-every' of github.com:jpellegrini/STklos into jpellegrini-any-every
2025-08-19 jpellegrini <j_p@aleph0.info>
- Merge branch 'master' into let-syntax
2025-08-19 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-optimize-remove'
- Make filter_remove and dfilter_remove static
- Merge branch 'optimize-remove' of github.com:jpellegrini/STklos into jpellegrini-optimize-remove
2025-08-18 jpellegrini <j_p@aleph0.info>
- Merge branch 'master' into provide
2025-08-17 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-ffi-enhancement'
- Factorization of functions that return the size of C objects.
- Permit negative offsets in cpointer-{ref,set!}
- Merge branch 'ffi-enhancement' of github.com:jpellegrini/STklos into jpellegrini-ffi-enhancement
- Add comments about icalls and optimize their usage in compiler
- Merge branch 'fix-rewrite'
- Permit to have a list for the key of the rewriter
- Small optimization in can-be-inlined?
2025-08-16 Erick Gallesio <eg@stklos.net>
- Permit to have a %icall in the rewriter keys
- Changed the way we verify that a rewriter can be used
- Don't add a var in the registered redefined vars if already present
- Verify that a variable as not been redefined before rewriting
2025-08-15 Erick Gallesio <eg@stklos.net>
- Renamed register-new-global{,s}! in %register-new-global{,s}!
2025-08-15 Jeronimo Pellegrini <j_p@aleph0.info>
- Describe icall objects
- Document icall objects
2025-08-15 Erick Gallesio <eg@stklos.net>
- Fix: %in-scheme macro
2025-08-14 Erick Gallesio <eg@stklos.net>
- Simplify the code of the compile function
- Added (the forgotten) icall.c file to git tree
- Update boot.c
- Merge branch 'jpellegrini-dolist'
- Merge branch 'dolist' of github.com:jpellegrini/STklos into jpellegrini-dolist
- Merge branch 'jpellegrini-vector-patterns'
- Merge branch 'vector-patterns' of github.com:jpellegrini/STklos into jpellegrini-vector-patterns
2025-08-13 Erick Gallesio <eg@stklos.net>
- Merge branch '%syntax-C'
- pretty-print: Unknown objects are no more printed as #[unknown]
- Code cleaning
- Migrate %%define to #%define
- Migrate %%let-syntax to #%let-syntax
- Migrate %%lambda to #%lambda
2025-08-12 Erick Gallesio <eg@stklos.net>
- Migrate most of the standard %%xxx ininternal calls
- Migrate %%require in #%require
- Migrate %%in-scheme in #%inscheme
- Migrate %%symbol-value in #%symbol-value
- Migrate %%label and %%goto in #%label and #%goto
- Migrate %%include{,-ci} in #%include{,-ci}
2025-08-12 Jeronimo Pellegrini <j_p@aleph0.info>
- Optimize dolist
2025-08-12 Erick Gallesio <eg@stklos.net>
- Migrate %%when-compile #%when-compile
2025-08-11 Jeronimo Pellegrini <j_p@aleph0.info>
- Args to boolean=? should be booleans
2025-08-10 Erick Gallesio <eg@stklos.net>
- WIP: Use a new type of object (internal-call) for standard macros
- Merge branch 'jpellegrini-srfi-13-enhance'
- Import explicitely from SCHEME SRFI-13 function which are now R7RS
- Merge branch 'srfi-13-enhance' of github.com:jpellegrini/STklos into jpellegrini-srfi-13-enhance
- Merge branch 'jpellegrini-numerator'
- Merge branch 'numerator' of github.com:jpellegrini/STklos into jpellegrini-numerator
- Merge branch 'jpellegrini-strncpy'
- Add a cast to avoid a compiler warning
- Merge branch 'strncpy' of github.com:jpellegrini/STklos into jpellegrini-strncpy
- Merge branch 'jpellegrini-readme'
- Merge branch 'readme' of github.com:jpellegrini/STklos into jpellegrini-readme
2025-08-08 Erick Gallesio <eg@stklos.net>
- Use %%in-scheme construct for implementation of `guard`
- WIP: reimplementation of %%in-scheme with an uninterned symbol
2025-08-08 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix rendering of STklos in README.md
- "R7RS" always in italics and with superscript 7 in README
2025-08-06 Jeronimo Pellegrini <j_p@aleph0.info>
- Add offset-type to cpointer-{ref-abs/set-abs!}
- Add a length parameter to cpointer->string
2025-08-06 Erick Gallesio <eg@stklos.net>
- Suppress %source-pos which was no more used
- Change a `let` in SRFI-5 with normal let expansion
- WIP: reimplementation of %%label and %%goto with uninterned symbols
- WIP: Make standard syntax forms use non interned symbol
2025-08-04 Jeronimo Pellegrini <j_p@aleph0.info>
- Do not accept non-strings in provide/require/etc
2025-08-04 Erick Gallesio <eg@stklos.net>
- Code cleaning
2025-08-01 Jeronimo Pellegrini <j_p@aleph0.info>
- Better error message for numerator/denominator
- Optimize symbol=?, fix boolean=? and symbol=?
- Optimize boolean=? (and make ir clearer)
2025-07-31 Jeronimo Pellegrini <j_p@aleph0.info>
- Rewrite any and every in C
2025-07-30 Jeronimo Pellegrini <j_p@aleph0.info>
- Use remove instead of filter in delete
- Rewrite remove in C
2025-07-27 Jeronimo Pellegrini <j_p@aleph0.info>
- Also suppress string->list from 13.stk
- Don't redefine some string procedures in SRFI-13
2025-07-27 Erick Gallesio <eg@stklos.net>
- define-syntax, let-syntax & syntax-rules use syntax-rules->lambda
2025-07-26 Erick Gallesio <eg@stklos.net>
- Add some hygiene to syntax-rules->lambda
- Small rewritting of let-syntax
2025-07-19 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-vector-patterns'
- Fix merge conflicts
- Merge branch 'jpellegrini-bytevector-sint-set'
- Merge branch 'bytevector-sint-set' of github.com:jpellegrini/STklos into jpellegrini-bytevector-sint-set
- Merge branch 'jpellegrini-fix-bytevector-bignum-reading'
- Suppressed a compilation warning.
- Merge branch 'fix-bytevector-bignum-reading' of github.com:jpellegrini/STklos into jpellegrini-fix-bytevector-bignum-reading
2025-07-17 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix test for "x fits in K bytes?" in bytevector.c
2025-07-17 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-pair-immutable-test'
- Merge branch 'pair-immutable-test' of github.com:jpellegrini/STklos into jpellegrini-pair-immutable-test
- Make case-lambda hygienic
- Added the tests proposed by @jpellegrini in PR #740
- Fix the printing of lambda (which was surrounded by useless bars)
2025-07-16 Jeronimo Pellegrini <j_p@aleph0.info>
- Add tests for pair-immutable!, pair-mutable?
2025-07-16 Erick Gallesio <eg@stklos.net>
- Add a define-generic in describe.stk to kill the autoload function
2025-07-11 Jeronimo Pellegrini <j_p@aleph0.info>
- Add bytevector-sint-set!, which was missing from (scheme bytevector).
2025-07-09 Jeronimo Pellegrini <j_p@aleph0.info>
- bytevector-uint-set! accepts fixnums now
- Turn mpz_t into long if possible, reading from bytevector
2025-07-09 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-features'
- Fix documentation for new pair-immutable! primitive
- Merge branch 'features' of github.com:jpellegrini/STklos into jpellegrini-features
2025-07-03 Erick Gallesio <eg@stklos.net>
- Added a dependency rule for getopt.ostk in lib/Makefile.am
2025-07-02 Erick Gallesio <eg@stklos.net>
- Merge branch 'newcell'
- Updated STk_C_make_list to used the pool stored in the VM
2025-06-27 Erick Gallesio <eg@stklos.net>
- Bug fix in last-pair
- Moved getotp.stk from lib to lib/stklos
2025-06-26 Erick Gallesio <eg@stklos.net>
- Moved trace.stk from lib to lib/stklos
- Moved pretty-print.stk from lib to lib/stklos
- Merge branch 'help'
- Use the new define-generic for help
- Added the key parameter :add-default to define-generic
- Fix Issue #788 signaled by jpellegrini
2025-06-24 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-readline'
- Added documentaion on readline-set-option! and readline-startup-hook
- Renamed readline-complete.c in readline-utils.c
- Renamed readline-set-option in readline-set-option!
- Ensure we are running libreadline to run the startup hook
- Added a hook when readline is run: readline-startup-hook
- Merge branch 'readline' of github.com:jpellegrini/STklos into jpellegrini-readline
- Merge branch 'jpellegrini-mutex'
- Suppress compilation warning when ot using threads
- Describe for symbols: tell the user if the symbol is uninterned
- Shorten lines in describe.stk
- Moved describe for numbers in its own method
- Moved describe.stk in lib/stklos directory
- Add a test about thread support when describing mutexes
- Merge branch 'mutex' of github.com:jpellegrini/STklos into jpellegrini-mutex
- Merge branch 'jpellegrini-test'
- Merge branch 'test' of github.com:jpellegrini/STklos into jpellegrini-test
- Merge branch 'jpellegrini-test-tool'
- Merge branch 'test-tool' of github.com:jpellegrini/STklos into jpellegrini-test-tool
2025-06-22 Erick Gallesio <eg@stklos.net>
- Optimize dec! and add forgotten test to pop!
- Merge branch 'jpellegrini-optimize-one-plus'
- Merge branch 'optimize-one-plus' of github.com:jpellegrini/STklos into jpellegrini-optimize-one-plus
2025-06-21 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-sum-mult'
- Added tests for fast paths on simple binary operations
- Fix fast paths when using neutral for simple operations
2025-06-19 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix syntax-rules AND make let-syntax accept 2 macro styles
2025-06-19 Erick Gallesio <eg@stklos.net>
- Avoid gcc warnings
- Merge branch 'sum-mult' of github.com:jpellegrini/STklos into jpellegrini-sum-mult
- Merge branch 'jpellegrini-macro-tests'
- Merge branch 'macro-tests' of github.com:jpellegrini/STklos into jpellegrini-macro-tests
- Merge branch 'jpellegrini-ffi'
- Added some missing libffi files in the tree
- Updated to new (newer in fact) libffi-3.5.1
- Merge branch 'ffi' of github.com:jpellegrini/STklos into jpellegrini-ffi
- Merge branch 'jpellegrini-pcre'
- Merge branch 'pcre' of github.com:jpellegrini/STklos into jpellegrini-pcre
2025-06-18 Jeronimo Pellegrini <j_p@aleph0.info>
- Make the empty vector pattern workin syntax-rules
- Implement vector patterns in syntax-rules
2025-06-18 Erick Gallesio <eg@stklos.net>
- Added a note about characters and FFI in the documentation
- The 3 character types returns now an integer when read from C
2025-06-17 Jeronimo Pellegrini <j_p@aleph0.info>
- Describe mutexes
2025-06-16 Erick Gallesio <eg@stklos.net>
- Integrated new test from Retropikzel on double <->float conversion
2025-06-14 Erick Gallesio <eg@stklos.net>
- Simplify arg->type2number (and make it type decl order independant)
- Make the ffi_table a list of pairs (instead of a lists of length 2)
- Small fix for long long
- Rename STk_ffi_type_to_number in STk_C_type2number
- Permit the compilation of STklos without libffi at all
2025-06-13 Erick Gallesio <eg@stklos.net>
- Suppressed some gcc warnings in extensions
- Suppressed %get-typed-ext-var et set-typed-ext-variable! primitives
- Merge branch 'Retropikzel-master'
- Moved cpointer-ref, cpointer-set!, c-sizeof in cpointer.c
2025-06-12 Erick Gallesio <eg@stklos.net>
- Added an example with an array in the documentation
- Documentation update for cpointer-ref and cpointer-set!
- Updated table of types for FFI
- Addes tests for offset in cpointer-ref & cpointer-set!
- Fixed offset calsculation in cpointer-ref
- Added primitive c-size-of
- Added tests on long long
- Fixed test for signed chars
- Implemented entirely in C cpointer-ref as a subr34.
- cpointer-set! is now a subr34 (rather than subr4).
2025-06-11 Jeronimo Pellegrini <j_p@aleph0.info>
- Check types and sizes in readline-set-option
- Add readline-set-option
- Do "./autogen.sh" before configuring ffi
- Upgrade libffi to 3.5.1
2025-06-11 Erick Gallesio <eg@stklos.net>
- Fix: use return instead of break in scheme2c integer treatment
- Code cleaning in shecme2c and c2scheme + type reordering
2025-06-09 Jeronimo Pellegrini <j_p@aleph0.info>
- Update PCRE2 to 10.45
2025-06-09 Erick Gallesio <eg@stklos.net>
- Use the table built in C in the Scheme code
2025-06-09 Jeronimo Pellegrini <j_p@aleph0.info>
- More macro tests
- Report failure and compile-failure separately in tests
2025-06-08 Erick Gallesio <eg@stklos.net>
- Using symbolic names for cpointer-{set!,ref}
- Fixed precision problem between float and double in ffi test
- Added missing tests abouts cpointer-set! and cointer-ref
2025-06-06 Erick Gallesio <eg@stklos.net>
- Changed the code of ffi to avoid using number for types
2025-06-06 Jeronimo Pellegrini <j_p@aleph0.info>
- Test unary * and + for bad operators
- Fix unary use of + and *
- Document testing
- Add (require "test") to test files
2025-06-05 Erick Gallesio <eg@stklos.net>
- Merge branch 'master' of github.com:Retropikzel/STklos into Retropikzel-master
- Rebuilt documentation
- Merge branch 'jpellegrini-some-docs'
- Merge branch 'jpellegrini-format-doc' into jpellegrini-some-docs
- Merge branch 'format-doc' of github.com:jpellegrini/STklos into jpellegrini-format-doc
- Merge branch 'some-docs' of github.com:jpellegrini/STklos into jpellegrini-some-docs
- Merge branch 'jpellegrini-lambda'
- NEWCELL uses now a function with a pool of pre-allocatted cells
2025-06-04 Erick Gallesio <eg@stklos.net>
- Use Thead Local Storage (if possible) rather than pthread specifics
2025-06-03 Jeronimo Pellegrini <j_p@aleph0.info>
- Remove bars from lambda in runtime mecro definition
2025-06-02 Erick Gallesio <eg@stklos.net>
- Suppressed GCC warning when compiling without threads
- Moved allocation counter in the current VM (rather the thread)
2025-06-01 retropikzel <retropikzel@iki.fi>
- Remove :schar type
- Shorten the C code
- Fix setting and getting booleans
- Fix character setting and getting
- Add documentation
- Fix arg-type->number call
- Make the offset optional argument
- Switch to cpointer-set! and cpointer-ref
2025-05-26 Erick Gallesio <eg@stklos.net>
- Put back define-synatx in mbe.stk
- Be more informative when a symbol is not in the import set
- Suppressed tc_values form the enum type_cells (unused now)
- Merge branch 'all-syntax'
2025-05-22 Erick Gallesio <eg@stklos.net>
- Adadpted tests since macros value cannot be used anymore
- Change: syntax value cannot be used in an expression
- Fix: when a local has the name of a global syntax
- Add syntax-rules to the syntaxes exported from (scheme base)
- syntax-rules is now also a macro.
2025-05-20 Erick Gallesio <eg@stklos.net>
- Renamed %module-import-and-export => %scheme-import-and-export
- Some cleaning in (scheme ...)
- Delete old env.stk file form lib directory
- Env. functions (environment, null-environment, ...) are in the core
2025-05-19 Erick Gallesio <eg@stklos.net>
- Get rid of hacks in (lib scheme) on '... 'else '=> and '_
2025-05-17 Erick Gallesio <eg@stklos.net>
- Changed %let-syntax => %%let-syntax
- Suppressed most of hacks for syntax exporting in (lib ...)
- Small code rewriting
- Quote is a macro and no more a special form.
- Added quasiquote companions unquote and unquote-splicing as macros
- Quasiquote is now a normal macro and no more a special form
2025-05-15 retropikzel <retropikzel@iki.fi>
- Remove _t from end of pointer access procedures
2025-05-13 retropikzel <retropikzel@iki.fi>
- Fix missed rename
- Merge
- Rename from pointer-set/ref-c-TYPE to cpointer-set/ref-TYPE
2025-05-13 Retropikzel <retropikzel@iki.fi>
- Merge branch 'egallesio:master' into master
2025-05-12 Erick Gallesio <eg@stklos.net>
- Added define and begin as a low level macros
- Added define-macro as a macro!
- Added let family, lambda and with handler as macros.
- Some fundamental special forms are no now syntax
- Merge branch 'jpellegrini-vm-use-C-make-list'
- Merge branch 'vm-use-C-make-list' of github.com:jpellegrini/STklos into jpellegrini-vm-use-C-make-list
- Merge branch 'jpellegrini-doc-c-make-list'
- Merge branch 'doc-c-make-list' of github.com:jpellegrini/STklos into jpellegrini-doc-c-make-list
2025-05-09 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-srfi-260'
- Forbid to pass more than one parameter to generate-symbol
- Fix Makefile.am
- Merge branch 'srfi-260' of github.com:jpellegrini/STklos into jpellegrini-srfi-260
- Merge branch 'claim-error'
- Added tests for with-handler
2025-05-08 jpellegrini <j_p@aleph0.info>
- Merge branch 'master' into srfi-260
2025-05-08 Erick Gallesio <eg@stklos.net>
- Changed the test for patching error location in with-handler
- Merge branch 'claim-error'
- Document new with-handler behavior
- Suppressed the definition of the old %claim-error macro
- Replaced %claim-error calls in r7rs.stk by with-error-loc
- Fix: call to STk_sruct_isa is a Scheme boolean (not a C one)
- Fix problem with new with-handler an raise-continuable
2025-05-06 Erick Gallesio <eg@stklos.net>
- Permit to `with-handler` to be a procedure or a symbol
2025-05-05 Erick Gallesio <eg@stklos.net>
- Fix the reading of address specifiers (#pxxx)
- Use hexadecimal when printing a condition or a struct
2025-05-03 Erick Gallesio <eg@stklos.net>
- Adding a compiler pragma to ignore warnings about clobbered variable.
- Permit the compilation with -std=c23
2025-05-02 Erick Gallesio <eg@stklos.net>
- Adaptation of the t_subptr type for compilation with gcc 15.1
- Use setjmp/longjmp rather than segsetjmp/siglongjmp
2025-05-01 Erick Gallesio <eg@stklos.net>
- Merge branch 'v220-gc-trace'
2025-04-30 Erick Gallesio <eg@stklos.net>
- Some "Makefile" files where not deleted after a distclean
2025-04-29 Erick Gallesio <eg@stklos.net>
- Optimize with-hander
- Qualify as static, some non-exported functions
- Fixed a bug introduced when skipping characters i the REPL on errors
2025-04-24 Jeronimo Pellegrini <j_p@aleph0.info>
- Expand focumentation of format, a little bit
2025-04-22 Jeronimo Pellegrini <j_p@aleph0.info>
- Add SRFI 260 - Generated symbols
2025-04-15 Erick Gallesio <eg@stklos.net>
- Add the flag PORT_TEXTUAL to pipe ports
2025-04-15 Jeronimo Pellegrini <j_p@aleph0.info>
- Document `STk_C_make_list` in `hacking.adoc`
2025-04-14 Jeronimo Pellegrini <j_p@aleph0.info>
- Use STk_C_make_list in %call-for-values
2025-04-13 Jeronimo Pellegrini <j_p@aleph0.info>
- Use STk_C_make_list in listify_top
2025-04-13 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-describe-uninterned'
- Merge branch 'describe-uninterned' of github.com:jpellegrini/STklos into jpellegrini-describe-uninterned
- Merge branch 'jpellegrini-describe-numbers'
- Merge branch 'describe-numbers' of github.com:jpellegrini/STklos into jpellegrini-describe-numbers
- Merge branch 'jpellegrini-srfi-258'
- Merge branch 'srfi-258' of github.com:jpellegrini/STklos into jpellegrini-srfi-258
- Merge branch 'jpellegrini-optimize-list.c'
- Documentation update
2025-04-12 Erick Gallesio <eg@stklos.net>
- Avoid a second run of the list to count needed cons
2025-04-10 Erick Gallesio <eg@stklos.net>
- Small refactoring of list_type_and_length
2025-04-10 Jeronimo Pellegrini <j_p@aleph0.info>
- Give examples of pretty-print in the documentation
2025-04-10 Erick Gallesio <eg@stklos.net>
- Samll rewrite of simple_list_copy
- Make simple-list-copy a static function
2025-04-03 Erick Gallesio <eg@stklos.net>
- Suppress useless test in list-copy
2025-04-03 Jeronimo Pellegrini <j_p@aleph0.info>
- Better describe for complexes, rationals
2025-04-02 Jeronimo Pellegrini <j_p@aleph0.info>
- Enhance describe for symbols
2025-04-02 Erick Gallesio <eg@stklos.net>
- Rename STk_must_malloc_list in STk_C_make_list
- Make STk_must_malloc_list thread-safe
- Used a pool of unused cells to decrease the number of GC
- Optimize STk_must_malloc_list for small lists
2025-04-02 retropikzel <retropikzel@iki.fi>
- Fixed the pointer get/set pointer
2025-04-01 retropikzel <retropikzel@iki.fi>
- Adding pointer modification functions to ffi
2025-03-29 Erick Gallesio <eg@stklos.net>
- Don't test the result of STk_must_malloc_many function
- Simplified the writing of function STk_must_malloc_list
- Moved STk_must_malloc_list in list.c
- Small modifications to the code
- Merge branch 'optimize-list.c' of github.com:jpellegrini/STklos into jpellegrini-optimize-list.c
2025-03-27 Erick Gallesio <eg@stklos.net>
- Added the promitive %gc-trace-object to trace collection
2025-03-27 Jeronimo Pellegrini <j_p@aleph0.info>
- Add tests for SRFI 258
- Add SRFI-258 (Uninterned symbols)
2025-03-24 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-fix-mult'
- Merge branch 'fix-mult' of github.com:jpellegrini/STklos into jpellegrini-fix-mult
- Merge branch 'jpellegrini-srfis'
- Merge branch 'srfis' of github.com:jpellegrini/STklos into jpellegrini-srfis
- Merge branch 'jpellegrini-doc-dec'
- Merge branch 'doc-dec' of github.com:jpellegrini/STklos into jpellegrini-doc-dec
- Merge branch 'jpellegrini-list'
- Merge branch 'list' of github.com:jpellegrini/STklos into jpellegrini-list
2025-03-23 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-exit-code'
- Use the EXIT_FAILURE and EXIT_SUCCESS for direct calls to STk_exit
- Use the constants EXIT_SUCCESS and EXIT_FAILURE instead of 1 and 0
- Various modifications to the `exit` and `emergenecy-exit`
- Merge branch 'exit-code' of github.com:jpellegrini/STklos into jpellegrini-exit-code
- Merge branch 'read+'
2025-03-22 Erick Gallesio <eg@stklos.net>
- Fixed an "internal error in the reader"
- Skip characters until end of line when an error occurs in the REPL
- Add the #!uvector-syntax and #!no-uvector-syntax
- Added the accept-uvector-syntax parameter object
- Add parameter object accept-uvector-syntax
- Renamed #!srfi-169 directive in #!underscore-numbers
2025-03-20 Erick Gallesio <eg@stklos.net>
- Add a test for the #!srfi-169 read directive
- Do not use define-read-directive while making the rboot image
- Added directives #!srfi-169 and #!no-srfi-169
2025-03-20 Jeronimo Pellegrini <j_p@aleph0.info>
- Fix double compilation of multiplication
2025-03-19 Jeronimo Pellegrini <j_p@aleph0.info>
- Optimize 1+ and 1-
- Add missing character in doc (dec!)
- Make exit be as per R7RS
- Make the (features) list immutable
- Add pair-immutable!
- Update srfis.stk
2025-03-18 Erick Gallesio <eg@stklos.net>
- Execute the read directive registered in a .ostk file
- Simplified code of define-read-directive
- Add the defined read directives in .ostk files
- Added documentation of define-read-directive
- dded a way to define new sharp directives
- Add bars around symbols which look as a number.
2025-03-16 Erick Gallesio <eg@stklos.net>
- Merge branch 'read'
- Documentation update
- Added tests for reading braces and brackets
- Adapted documentation of read-brace-handler for brackets too
- Small code re-factorization
- Added the read-bracket-handler parameter object
- Added documentation for read-brace-handler
- Changed the read brace parameter object
2025-03-16 Jeronimo Pellegrini <j_p@aleph0.info>
- Merge branch 'optimize-list.c' of github.com:jpellegrini/STklos into optimize-list.c
- Optimize (scheme vector @) TAGvector->list
- Optimize string->list
- Optimize string->list
2025-03-15 Jeronimo Pellegrini <j_p@aleph0.info>
- Enhance filter
- Optimize and enhance last-pair
- Optimize and enhance reverse
- Include warning in module.stk about list-deep-copy
- Optimize and enhance list-copy, add list-deep-copy
- Optimize MAP
- Optimize make-list and vector->list
2025-03-13 Jeronimo Pellegrini <j_p@aleph0.info>
- length: reject bad lists, and be more informative
2025-03-11 Erick Gallesio <eg@stklos.net>
- Added read-brace-procedure parameter object for reading curly braces
2025-03-10 Erick Gallesio <eg@stklos.net>
- Simplified a lot the code for reading here strings
- Do not consider '}' as a closing list symbol by default.
- Merge branch 'jpellegrini-closing-parenthesis'
- Small factorization
2025-03-09 Jeronimo Pellegrini <j_p@aleph0.info>
- Be more informative about the 'bad closing parenthesis'
2025-03-09 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-doc-define-primitive'
- Suppressed the old comment on DEFINE_PRIMITIVE
- Shoreten some lines
- Merge branch 'doc-define-primitive' of github.com:jpellegrini/STklos into jpellegrini-doc-define-primitive
- Merge branch 'jpellegrini-symbol-equality'
- Merge branch 'symbol-equality' of github.com:jpellegrini/STklos into jpellegrini-symbol-equality
- Merge branch 'jpellegrini-symbol-interned'
- Suppressed (now uneeded) function STk_hash_get_symbol
- Add an info bit for unterned symbols
2025-03-08 Erick Gallesio <eg@stklos.net>
- Merge branch 'symbol-interned' of github.com:jpellegrini/STklos into jpellegrini-symbol-interned
2025-03-08 Erick Gallesio <eg@stklos.net>
- Merge pull request #717 from jpellegrini/macroexpand-doc
2025-03-07 Jeronimo Pellegrini <j_p@aleph0.info>
- Document the implementation of DEFINE_PRIMITIVE
2025-03-07 Erick Gallesio <eg@stklos.net>
- Merge branch 'jpellegrini-gcc-15'
- Define a typedef for SCM(*)()
- Add some casts for compilation with "-std=gnu23" option
2025-03-06 Erick Gallesio <eg@stklos.net>
- Use a cast in DEFINE_PRIMITIVE instead of a void* in primitive_obj
- Merge branch 'gcc-15' of github.com:jpellegrini/STklos into jpellegrini-gcc-15
2025-03-04 Erick Gallesio <eg@stklos.net>