-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
766 lines (437 loc) · 22.8 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
2012-07-06 Takashi Kato <[email protected]>
* src/cache.c (Sg_ReadCache): modified not to abort when something
wrong cache tag found.
* src/os/posix/system.c (Sg_GetTemporaryDirectory): modified to cache
directory structure. now .sagittarius/${version}/${triple}
2012-07-02 Takashi Kato <[email protected]>
* sitelib/srfi/%3a1/lists.scm (unfold): modified unfold tail-recursive
so that it does not consume too much stack.
* boot/lib/scmlib.scm (fold-right): modified fold-right tail-recursive
so that it does not consume too much stack.
2012-06-27 Takashi Kato <[email protected]>
* src/bytevector.c (Sg_ByteVectorToInteger): Fixed start and end
argument treatment. (it was almost ignored before).
* sitelib/sagittarius/interactive/support.scm: added interactive support
library.
* boot/lib/repl.scm: added initialise file loading.
2012-06-24 Takashi Kato <[email protected]>
* sitelib/srfi/%3a1/lists.scm (delete-duplicates): fixed infinite loop.
* src/vmcall.c (closure call): modified to set unspecified value as
default return value. (Issue 18)
2012-06-19 Takashi Kato <[email protected]>
* sitelib/net/oauth/consumer.scm (get-problem-report): fixed returning
#f and caused assertion-violation.
2012-06-14 Takashi Kato <[email protected]>
* src/bytevector.c (Sg_ByteVectorToInteger): improved
bytevector->integer performance.
2012-06-12 Takashi Kato <[email protected]>
* src/null.stub (get-string-all): Fixed to read all string. Enbuged
when I added to buffer reader for string port.
2012-06-11 Takashi Kato <[email protected]>
* sitelib/rfc/x.509.scm (rfc): fixed typo.
2012-06-07 Takashi Kato <[email protected]>
* sitelib/text/csv.scm (text): fixed multiple line comments reading.
2012-06-01 Takashi Kato <[email protected]>
* boot/compiler.scm (and-let*): modified to rewrite initial expression
to avoid unbound variable exception after macro expansion.
2012-05-30 Takashi Kato <[email protected]>
* src/port.c (file_look_ahead_u8): Fixed when EOF is read buffer index
was decreased and it causes infinite loop with combination of get-u8.
2012-05-26 Takashi Kato <[email protected]>
* src/reader.c (read_hash_equal): fixed SEGV when reading #= with
read or get-datum.
2012-05-18 Takashi Kato <[email protected]>
* src/unicode.c (utf8_reader): fixed utf8 treatment.
* src/reader.c (read_symbol_or_number): modified lexical syntax check in
R6RS mode not to raise io error when the first letter was geater than
0x7F.
(readtable): introduced CT_ILLEGAL to handle illegal control characters.
2012-05-14 Takashi Kato <[email protected]>
* ext/zlib/rfc/zlib.scm (open-inflating-input-port): fixed read!
procedure.
* src/port.c (Sg_MakeCustomBinaryPort): improved
custom_binary_put_u8_array performance.
2012-05-12 Takashi Kato <[email protected]>
* src/port.c (get or read binary operations): fixed reckless label to
be allow to get custom port.
2012-05-10 Takashi Kato <[email protected]>
* src/vmlib.stub (library-exported-set!): modified the behaviour to
append the export spec. now export syntax can be appeared multiple
times in one library.
2012-05-07 Takashi Kato <[email protected]>
* src/extlib.stub (get-output-bytevector): fixed to reset buffer.
* src/port.c (Sg_SetPortPosition): fixed set port position.
* src/null.stub (null): modified bytevector-copy to take start and end
optional paraemeters.
2012-05-04 Takashi Kato <[email protected]>
* sitelib/rfc/x.509.scm (rfc x.509): fixed unbound variable error
calling make-basic-constrains.
2012-05-03 Takashi Kato <[email protected]>
* ext/socket/socket.c (socket_read_u8_all): fixed reading all binary
data from socket. Before it wasn't finish.
2012-04-23 Takashi Kato <[email protected]>
* sitelib/rsa/pkcs/%3a12/keystore.scm (load-keystore): fixed loading
certificates. it did not load any certificate before.
* src/port.c (port_cpl): fixed class hierachy of port.
2012-04-20 Takashi Kato <[email protected]>
* sitelib/rfc/base64.scm (base64-decode-string): modified to return
bytevector when optional transcoder was #f.
2012-04-19 Takashi Kato <[email protected]>
* src/port.c (Sg_MakeByteArrayOutputPort): improved performance of
bytevector-output-port and string-output-port.
2012-03-29 Takashi Kato <[email protected]>
* sitelib/rfc/x.509.scm: added x509 utility library.
2012-03-18 Takashi Kato <[email protected]>
* boot/compiler.scm (define-library): added missing feature cond-expand.
2012-03-12 Takashi Kato <[email protected]>
* sitelib/sagittarius/mop/allocation.scm (sagittarius mop allocation):
added :allocation supported metaclass.
2012-03-09 Takashi Kato <[email protected]>
* ext/crypto/crypto/key.scm (crypto): added public/private key export
and import.
* sitelib/asn.1/types.scm (asn.1): <der-integer> fixed invalid
conversion when it got 0 as its value.
2012-03-07 Takashi Kato <[email protected]>
* sitelib/util/port.scm (util): added port-fold-right.
* src/clos.c (Sg_NoNextMethod): fixed infinite loop.
2012-03-05 Takashi Kato <[email protected]>
* src/os/win/thread.c (Sg_InternalThreadStart): fixed thread-terminate! related error on Windows.
2012-02-11 Takashi Kato <[email protected]>
* sitelib/text/csv.scm (text csv): added csv parse library.
* src/extlib.stub (current-directory): fixed segv.
2012-02-08 Takashi Kato <[email protected]>
* boot/compiler.scm (and-let*): added and-let* as a builtin syntax.
* src/library.c (search_library): modified to use full path to save
cache file.
* src/vm.c (Sg_GetStackTrace): modified to get better stack trace.
2012-02-05 Takashi Kato <[email protected]>
* src/null.stub (put-string put-byevector): fixed range check.
2012-01-16 Takashi Kato <[email protected]>
* ext/*/*_stub.c: removed extra module's generated stub files.
* ext/regex/regex2.c (unescape_char): fixed reading \xhh.
added \uhhhh and \Uhhhhhhhh.
* src/null.stub (quotient remainder modulo): modified to raise an
&assertion when divisor was 0.
2012-01-14 Takashi Kato <[email protected]>
* ext/crypto/random.c (Sg_MakePseudoRandom): separated pseudo random and
secure random
2012-01-11 Takashi Kato <[email protected]>
* boot/compiler.scm (include include-ci): implemented include related
syntax.
2012-01-05 Takashi Kato <[email protected]>
* src/extlib.stub (weak-vector): supported weak vector.
* boot/compiler.scm (cond-expand): added builtin cond-expand.
* README.md: changed to Markdown format.
2012-01-04 Takashi Kato <[email protected]>
* src/null.stub (list->string): it accepted non list object and
returned empty string.
* R7RS: added first support for R7RS libraries and syntax.
* boot/compiler.scm (case): adjusted case to R7RS '=> keyword.
2012-01-03 Takashi Kato <[email protected]>
* sitelib/shorten.scm (shorten): Added (shorten)library.
* src/hashtable.c (equal-hash): Fixed non stop problem when given object
contains too many shared objects.
2011-12-30 Takashi Kato <[email protected]>
* sitelib/sagittarius/control.scm (define-with-key):
rewrite define-with-key.
2011-12-29 Takashi Kato <[email protected]>
* sitelib/sagittarius/reader.scm (sagittarius reader):
added reader macro library.
2011-11-23 Takashi Kato <[email protected]>
* src/null.stub (*.): fixed returning always 0.0.
* boot/compiler.scm (pass1/scan-inlinable): fixed mis marking for
constable and inlinable.
2011-11-15 Takashi Kato <[email protected]>
* src/charset.c :
[Issue 4] Added builtin charset.
* src/treemap.c, src/rbtree.c :
[Issue 3] Added treemap interface and implementation.
2011-11-13 Takashi Kato <[email protected]>
* src/library.c (Sg_ImportLibraryFullSpec):
[Issue 2] Fixed rename export.
2011-11-11 Takashi Kato <[email protected]>
* started Version 0.2.3.
* boot/lib/scmlib.scm (er-macro-transformer): fixed compare procedure.
2011-11-10 Takashi Kato <[email protected]>
* boot/compiler.scm (pass1/collect-inlinable!): added constable flag,
and fixed $gset was not treated properly.
(compile): added library constant fold.
2011-11-09 Takashi Kato <[email protected]>
* src/extlib.stub (current-directory): made it as a parameter.
* boot/compiler.scm: added const inliner on pass2.
* src/null.stub (make-transcoder): Fixed native EOL style problem.
* CMakeLists.txt: Supported non Boehm GC installed platform.
2011-11-08 Takashi Kato <[email protected]>
* ext/zlib/rfc/zlib.scm (rfc zlib): (rfc zlib) library has been added.
* src/null.stub (get-bytevector-n!): fixed invalid range check.
* doc/rnrs/io/ports.scrbl: fixed reversed order argument list in
call-with-port.
* src/port.c (custom_close): fixed not calling close procedure of
custom port when the port was closed.
2011-11-03 Takashi Kato <[email protected]>
* lib/compat/r7rs.scm (compat r7rs): added R7RS compatibility library.
currently, only syntax-rules.
* sitelib/match.scm (match): fixed unbound variable match:error
* boot/lib/match_core.scm (match): fixed unbound variable 'faile-sym.
2011-11-01 Takashi Kato <[email protected]>
* boot/compiler.scm (global-eq?): fixed finding target library.
* sitelib/sagittarius/control.scm (define-with-key): fixed non-hygine
macro to hygine.
2011-10-28 Takashi Kato <[email protected]>
* boot/compiler.scm (let*-values): fixed wrong reference of compile time
environment. let*-values init form could refer formals.
* src/null.stub (delete-file): it did not raise error when deleting file
was failed. it's been fixed.
2011-10-27 Takashi Kato <[email protected]>
* sitelib/util/hashtables.scm (util hashtables): added hashtable utils.
* sitelib/scribble.scm (scribble): adapt scribble reader to bytevector.
2011-10-26 Takashi Kato <[email protected]>
* src/library.c (rename_key): fixed rename import restriction.
2011-10-21 Takashi Kato <[email protected]>
* sitelib/util/list.scm: separated from (rfc http).
* test/tests/text/sxml/ssax.scm (ssax): ssax test case has been added.
* src/load.c (load): if target loading file had hash-bang, load did not
restore the previous mode. it's been fixed.
* src/library.c (import): rename import did not work. it's been fixed.
2011-10-20 Takashi Kato <[email protected]>
* boot/compiler.scm: fixed miscompiling when builtin test instruction had
let clause.
* sitelib/util/file.scm (util file): Gauche like file utility has been added.
* sitelib/util/port.scm (util port): Gauche like port utility has been added.
* sitelib/srfi/%3a38/with-shared-structure.scm (srfi-38): For portability,
this library has been added.
2011-10-17 Takashi Kato <[email protected]>
* boot/lib/macro.scm (expand-syntax): fixed replacing non equal identifiers.
* src/identifier.c (Sg_IdentifierEqP): fixed comparing identifiers.
2011-09-08 Takashi Kato <[email protected]>
* src/library.c (import_parents): improved library system.
2011-09-07 Takashi Kato <[email protected]>
* src/number.c (Sg_Sin): fixed when argument was not fixnum nor complex number
it just returned flonumise the argument.
* sitelib/srfi/%3a0/cond-expand.scm: cond-expand was supported.
2011-09-06 Takashi Kato <[email protected]>
* boot/compiler.scm (renv): made it not to use hashtable for cache.
* sitelib/srfi/%3a98.scm: supported srfi-98.
* boot/compiler.scm (pass2/lambda-lifting): added lambda lifting.
* src/vm.c (expand_stack): implemented stack expantion.
2011-08-04 Takashi Kato <[email protected]>
* src/number.c (Sg_Mul): fixed bignum * 0 calculation. it returned bignum.
2011-07-26 Takashi Kato <[email protected]>
* src/writer.c (write_symbol): fixed unneccessary case for escape symbol.
2011-07-21 Takashi Kato <[email protected]>
* src/null.stub: fixed list-transpose+ SIGSEGV.
2011-07-18 Takashi Kato <[email protected]>
* ext/process/process.c: added process library.
* src/os/win/file.c: fixed windows dynamic load path.
2011-07-17 Takashi Kato <[email protected]>
* src/sagittarius/file.h: current-directory and set-current-directory
have been added.
2011-07-15 Takashi Kato <[email protected]>
* src/cache.c (read_library): fixed not imported library problem, when
a cache imports the same library twice.
* sitelib/srfi/%3a13.scm (srfi): added low level procedures to export spec.
* sitelib/text/sxml/helper.scm: fixed export problem.
* sitelib/text/parse.scm (text parse): fixed find-string-from-port?. It was
using kmp-restart-vector wrong way.
* src/exceptions.c (condition): fixed segmentation fault when given argument
contains (condition).
2011-07-14 Takashi Kato <[email protected]>
* ext/socket/socket.c: fixed read problem.
2011-07-13 Takashi Kato <[email protected]>
* sitelib/encoding/euc-jp.scm (encoding euc-jp): added euc-jp codec.
* src/null.stub: modified get-bytevector-* series for socket to read
bytes from textual ports.
* ext/regex/regex.c: fixed char_property matching, it always failed when
it reached last.
2011-07-12 Takashi Kato <[email protected]>
* sitelib/rfc/uri.scm (rfc uri): made uri record use keyword to
initialize values.
* sitelib/sagittarius/control.scm (sagittarius control): introduced
let-keywords and let-keywords*.
2011-07-11 Takashi Kato <[email protected]>
* sitelib/slib/queue.scm (slib queue): added slib queue.
2011-07-10 Takashi Kato <[email protected]>
* src/reader.c (read): added #!/... style hash bang line reader.
* boot/compiler.scm (pass1/define): added (define <var>) form to
conform R6RS.
2011-07-09 Takashi Kato <[email protected]>
* src/number.c (Sg_NumberToString): fixed displaying infinite complex
number.
2011-07-08 Takashi Kato <[email protected]>
* src/cache.c (compiled cache): introduced compiled cache mechanism.
fixed cache structure.
* src/extlib.stub (sagittarius): added read-directory and clean-cache.
2011-06-30 Takashi Kato <[email protected]>
* sitelib/encoding/sjis.scm (encoding sjis): added sjis-codec.
2011-06-29 Takashi Kato <[email protected]>
* src/codec.h: prepared for custom codec.
2011-06-26 Takashi Kato <[email protected]>
* sitelib/rfc/base64.scm (rfc base64): changed to use define-optional
instead of case-lambda.
* sitelib/rfc/quoted-printable.scm (rfc quoted-printable): introduced
(rfc quoted-printable) library.
2011-06-23 Takashi Kato <[email protected]>
* sitelib/rfc/uri.scm (rfc uri): added RFC3986 uttility library.
* src/null.stub (null): fixed get-line method.
* src/library.c (encode_string): added encoding method to convert
library name to path.
* ext/regex/regex.c: fixed some bugs.
* sitelib/srfi/%3a2/and-let%2a.scm (srfi :2 and-let*): added srfi-2.
* sitelib/text/parse.scm (text parse): addes parse input library.
* sitelib/rfc/%3a5322.scm (rfc :5322): added rfc 5322 utility library.
2011-06-22 Takashi Kato <[email protected]>
* ext/regex/sagittarius/regex.scm (sagittarius regex): introduced Java
compatible regular expression library.
2011-06-17 Takashi Kato <[email protected]>
* src/null.stub, src/extlib.stub (display write newline write/ss format):
added open check and output port check.
2011-06-16 Takashi Kato <[email protected]>
* src/port.c (Sg_PseudoClosePort): fixed stupid bug.
* ext/socket/sagittarius/socket.scm (sagittarius socket): socket library
has been added.
2011-06-08 Takashi Kato <[email protected]>
* ext/time/time.c (sagittarius time): introduced first version of time
library.
2011-06-07 Takashi Kato <[email protected]>
* sitelib/match.scm (match): introduced Andrew Wright's match.
* autogen.sh: use sash instead of Ypsilon to generate stub
2011-06-06 Takashi Kato <[email protected]>
* sitelib/sagittarius/threads.scm (sagittarius threads): introduced first version
of multi threading library(not completed yet)
* lib/rnrs.scm, lib/rnrs/base.scm, lib/rnrs/syntax-case.scm (rnrs): removed
misc exports.
* src/load.c (Sg_DynLoad): implemented derive_dynload_initfn to derive
initialization function from dynamic libary name.
2011-06-01 Takashi Kato <[email protected]>
* src/code.c (SG_INT_FITS_INSN_VALUE): fixed condition.
* lib/core/exceptions.scm (core): fixed exception when internal defines
are in guard body.
* src/weak.c: introduced weak hashtable.
2011-05-30 Takashi Kato <[email protected]>
* boot/compiler.scm (syntax-quote): introduced syntax-quote for
macro expansion.
(pass1/quasiquote): fixed mis porting.
2011-05-24 Takashi Kato <[email protected]>
* sitelib/srfi/%3a8/char-set.scm (srfi): srfi-8 has been added.
* sitelib/srfi/%3a14/char-set.scm (srfi): srfi-14 has been added.
* sitelib/srfi/%3a13/strings.scm (srfi): srfi-13 has been added.
* src/vm.c (insn SUBI): fixed calculation mis-order.
2011-05-23 Takashi Kato <[email protected]>
* CMakeLists.txt: fixed incorrect load path on cygwin.
* src/null.stub (rnrs): added exit
* src/core.c: added cleanup implementation(not completed yet)
* src/compare.c (equal?): fixed SIGSEGV when lhs was string and lhs
was not string.
* boot/compiler.scm (pass1/quasiquote): fixed when quasiquote got
identifire.
* src/library.c (rename import): fixed not imported bug.
2011-05-19 Takashi Kato <[email protected]>
* sitelib/rfc/base64.scm: added bytevector interface.
* src/null.stub (bytevector port): fixed get-u8 and lookahead-u8,
when a port reached EOF it returned -1, instead of EOF.
* boot/compiler.scm: implemented R6RS let-syntax letrec-syntax and
define-syntax.
2011-05-18 Takashi Kato <[email protected]>
* lib/rnrs/r5rs.scm (rnrs r5rs): added r5rs compatible files.
* src/null.stub (rnrs hashtables): added hashtable procedures.
2011-05-17 Takashi Kato <[email protected]>
* boot/lib/macro.scm (syntax-case): fixed renaming problem.
* boot/compiler.scm (pass1/body): refactored for internal macro.
2011-05-12 Takashi Kato <[email protected]>
* src/library.c (library): implemented efficient import spec resolver.
2011-05-11 Takashi Kato <[email protected]>
* src/null.stub (flonum): added flomun operations.
* sitelib/sagittarius/cgen/base.scm (cgen): fixed remainer proc.
2011-05-10 Takashi Kato <[email protected]>
* src/null.stub, src/port.c (rnrs io ports): make it pass R6RS test
suite.
(fixnum): fixed fxodd? fxeven? fixnum-width, fxand, fxior and fxxor.
2011-05-09 Takashi Kato <[email protected]>
* src/codec.c (latin-1-codec): added implementation.
* src/record.c (record): fixed record-generative?, record-predicate,
record-accessor and record-mutator.
2011-05-07 <[email protected]>
* src/null.stub (rnrs base): fixed '/' error.
2011-05-06 Takashi Kato <[email protected]>
* src/exceptions.c (rnrs conditions): added missing condition and fixed
some typos.
* boot/lib/scmlib.scm (list-sort vector-sort vector-sort!): deleted
duplicates.
* src/null.stub (utf16->string utf32->string): fixed endian detection.
(assoc): fixed typo (assc -> assoc)
* src/sagittarius/error.h, src/error.c: added implementation of
implementation-restriction-violation
* src/null.stub (null): added some fixnum arithmetic operations
* src/reader.c (read_prefixed_number): fixed mis-reading #i#xf/e case.
2011-05-05 Takashi Kato <[email protected]>
* src/vm.c (eval): refactered evaluation routine.
(call/cc winders): fixed before thunk was not called.
* src/load.c, src/sagittarius/load.h: separate files from vm.h and vm.c
2011-04-26 Takashi Kato <[email protected]>
* boot/lib/macro.scm (syntax-case): fixed mis expansion when syntax
templates contained vectors.
* src/record.c (Sg_MakeRecordTypeDescriptor): fixed fields order.
* src/macro.c (unwrap_rec): fixed unwrapping vector.
2011-04-22 Takashi Kato <[email protected]>
* boot/lib/macro.scm (expand-syntax): fixed unbound variable error, when
evaluate (syntax ...) expression in non macro context.
* src/gloc.c, src/sagittarius/gloc.h (gloc): added gloc
2011-04-21 Takashi Kato <[email protected]>
* sitelib/sagittarius/misc.scm (sagittarius misc): added define-macro.
* sitelib/sagittarius/aspect.scm (sagittarius aspect): added point-cut.
* boot/compiler.scm (interesting-to-quasiquote?): fixed mis expanding
when macro returned wraped expression.
* boot/lib/macro.scm (core syntax-case): resolved free pattern variable
problem.
* src/identifier.c (Sg_WrapSyntax): fixed error when vector was given.
2011-04-19 Takashi Kato <[email protected]>
* sitelib/pp.scm: removed #<unknown> and added #<unspecified>
2011-04-18 Takashi Kato <[email protected]>
* boot/lib/macro.scm (syntax-case): Added syntax-case expander.
(syntax): Added syntax expander.
2011-04-14 Takashi Kato <[email protected]>
* src/main.c (show_usage): added usage message.
2011-04-13 Takashi Kato <[email protected]>
* src/port.c (Sg_GetStringFromStringPort): fixed retrieving string process.
2011-04-12 Takashi Kato <[email protected]>
* boot/lib/scmlib.scm (rnrs io simple): all (rnrs io simple) functions
are implemented.
* src/null.stub (rnrs io port): added custom ports.
* src/port.c (rnrs io port): added Sg_MakeCustomBinaryPort and
Sg_MakeCustomTextualPort for custom ports
2011-04-11 <[email protected]>
* boot/lib/scmlib.scm (rnrs io port): implemented open-bytevector-output-port
(rnrs io port): added call-with-string/bytevector-output-port.
* src/null.stub (rnrs io port): implemented most of port functions.
custom ports are not implemented yet.
2011-04-09 <[email protected]>
* sitelib/sagittarius/cgen/base.scm (sagittarius): modified arrayref to
output prettier C.
* src/null.stub (rnrs io port): added get-bytevector related and
get-string related functions
2011-04-08 Takashi Kato <[email protected]>
* src/bytevector.c (Sg_ByteVectorToString): fixed over reading from
bytevector.
* src/null.stub (rnrs bytevectors): added utf32<->string functions.
* boot/lib/scmlib.scm (rnrs unicode): added string-ci related functions.
(rnrs bytevectors): added bytevector-uint related
functions.
(rnrs lists): added for-all etc.
(rnrs sorting): added sort functions.
* src/unicode.c (rnrs unicode): added string-normalize related functions.
* src/null.stub (rnrs io ports): added some port related functions.
* src/sagittarius/subr.h (argumentAsCodec): added check macro for codec.
2011-04-07 Takashi Kato <[email protected]>
* src/codec.c (utf32): added utf-32 codec implementation.
* src/unicode.c (rnrs unicode): added string-**case function.
2011-04-06 Takashi Kato <[email protected]>
* src/number.c, src/number.h (rationalize): added rationalize.
* src/unicode.c, src/unicode.h (rnrs unicode): added char related unicode function.
2011-04-05 Takashi Kato <[email protected]>
* src/null.stub (rnrs base): (rnrs base (6)) procedures are implemented.
2011-04-04 Takashi Kato <[email protected]>
* Sagittarius (Scheme function): added input/output port for file binary
port and transcoded textual port.
* Sagittarius (C function): fixed gc finalizer related bug.
* Sagittarius (C function): added weak hash table. (From Gauche)
* Sagittarius (C function): file binary in/out port supported buffer mode.