* removed (ikarus system) from the set of libraries.

This commit is contained in:
Abdulaziz Ghuloum 2007-05-06 20:07:00 -04:00
parent eb5770e079
commit a146056491
2 changed files with 305 additions and 306 deletions

Binary file not shown.

View File

@ -96,7 +96,6 @@
(define library-legend (define library-legend
'([$all (ikarus system $all)] '([$all (ikarus system $all)]
[s (ikarus system)]
[u (ikarus system unsafe)] [u (ikarus system unsafe)]
[i (ikarus)] [i (ikarus)]
[r (r6rs)] [r (r6rs)]
@ -119,313 +118,313 @@
)) ))
(define ikarus-macros-map (define ikarus-macros-map
'([define s i r] '([define i r]
[define-syntax s i r] [define-syntax i r]
[module s i ] [module i ]
[begin s i r] [begin i r]
[set! s i r] [set! i r]
[foreign-call s i r] [foreign-call i r]
[quote s i r] [quote i r]
[syntax-case s i r] [syntax-case i r]
[syntax s i r] [syntax i r]
[lambda s i r] [lambda i r]
[case-lambda s i r] [case-lambda i r]
[type-descriptor s i ] [type-descriptor i ]
[letrec s i r] [letrec i r]
[if s i r] [if i r]
[when s i r] [when i r]
[unless s i r] [unless i r]
[parameterize s i ] [parameterize i ]
[case s i r] [case i r]
[let-values s i r] [let-values i r]
[define-record s i r] [define-record i r]
[include s i r] [include i r]
[syntax-rules s i r] [syntax-rules i r]
[quasiquote s i r] [quasiquote i r]
[with-syntax s i r] [with-syntax i r]
[let s i r] [let i r]
[let* s i r] [let* i r]
[cond s i r] [cond i r]
[and s i r] [and i r]
[or s i r])) [or i r]))
(define ikarus-procedures-map (define ikarus-procedures-map
'([void s i] '([void i]
[not s i] [not i]
[boolean? s i] [boolean? i]
[null? s i] [null? i]
[procedure? s i] [procedure? i]
[eof-object? s i] [eof-object? i]
[eof-object s i] [eof-object i]
[eq? s i] [eq? i]
[eqv? s i] [eqv? i]
[equal? s i] [equal? i]
[cons s i] [cons i]
[pair? s i] [pair? i]
[car s i] [car i]
[cdr s i] [cdr i]
[set-car! s i] [set-car! i]
[set-cdr! s i] [set-cdr! i]
[caar s i] [caar i]
[cdar s i] [cdar i]
[cadr s i] [cadr i]
[cddr s i] [cddr i]
[caaar s i] [caaar i]
[cdaar s i] [cdaar i]
[cadar s i] [cadar i]
[cddar s i] [cddar i]
[caadr s i] [caadr i]
[cdadr s i] [cdadr i]
[caddr s i] [caddr i]
[cdddr s i] [cdddr i]
[caaaar s i] [caaaar i]
[cdaaar s i] [cdaaar i]
[cadaar s i] [cadaar i]
[cddaar s i] [cddaar i]
[caadar s i] [caadar i]
[cdadar s i] [cdadar i]
[caddar s i] [caddar i]
[cdddar s i] [cdddar i]
[caaadr s i] [caaadr i]
[cdaadr s i] [cdaadr i]
[cadadr s i] [cadadr i]
[cddadr s i] [cddadr i]
[caaddr s i] [caaddr i]
[cdaddr s i] [cdaddr i]
[cadddr s i] [cadddr i]
[cddddr s i] [cddddr i]
[list s i] [list i]
[list-ref s i] [list-ref i]
[make-list s i] [make-list i]
[list* s i] [list* i]
[list? s i] [list? i]
[append s i] [append i]
[last-pair s i] [last-pair i]
[reverse s i] [reverse i]
[length s i] [length i]
[assq s i] [assq i]
[assv s i] [assv i]
[assoc s i] [assoc i]
[memq s i] [memq i]
[memv s i] [memv i]
[member s i] [member i]
[bwp-object? s i] [bwp-object? i]
[weak-cons s i] [weak-cons i]
[weak-pair? s i] [weak-pair? i]
[char? s i] [char? i]
[char=? s i] [char=? i]
[char<? s i] [char<? i]
[char>? s i] [char>? i]
[char<=? s i] [char<=? i]
[char>=? s i] [char>=? i]
[integer->char s i] [integer->char i]
[char->integer s i] [char->integer i]
[char-whitespace? s i] [char-whitespace? i]
[string? s i] [string? i]
[string s i] [string i]
[make-string s i] [make-string i]
[string-ref s i] [string-ref i]
[string-set! s i] [string-set! i]
[string-length s i] [string-length i]
[string=? s i] [string=? i]
[substring s i] [substring i]
[string-append s i] [string-append i]
[string->list s i] [string->list i]
[list->string s i] [list->string i]
[uuid s i] [uuid i]
[date-string s i] [date-string i]
[vector s i] [vector i]
[make-vector s i] [make-vector i]
[vector-ref s i] [vector-ref i]
[vector-set! s i] [vector-set! i]
[vector? s i] [vector? i]
[vector-length s i] [vector-length i]
[list->vector s i] [list->vector i]
[vector->list s i] [vector->list i]
[for-each s i] [for-each i]
[map s i] [map i]
[andmap s i] [andmap i]
[ormap s i] [ormap i]
[fixnum? s i] [fixnum? i]
[fx< s i] [fx< i]
[fx<= s i] [fx<= i]
[fx> s i] [fx> i]
[fx>= s i] [fx>= i]
[fx= s i] [fx= i]
[fx- s i] [fx- i]
[fx+ s i] [fx+ i]
[fx* s i] [fx* i]
[fxzero? s i] [fxzero? i]
[fxadd1 s i] [fxadd1 i]
[fxsub1 s i] [fxsub1 i]
[fxquotient s i] [fxquotient i]
[fxremainder s i] [fxremainder i]
[fxmodulo s i] [fxmodulo i]
[fxsll s i] [fxsll i]
[fxsra s i] [fxsra i]
[fxlogand s i] [fxlogand i]
[fxlogxor s i] [fxlogxor i]
[fxlogor s i] [fxlogor i]
[fxlognot s i] [fxlognot i]
[fixnum->string s i] [fixnum->string i]
[string->flonum s i] [string->flonum i]
[- s i] [- i]
[= s i] [= i]
[< s i] [< i]
[> s i] [> i]
[<= s i] [<= i]
[>= s i] [>= i]
[* s i] [* i]
[+ s i] [+ i]
[add1 s i] [add1 i]
[sub1 s i] [sub1 i]
[number? s i] [number? i]
[bignum? s i] [bignum? i]
[integer? s i] [integer? i]
[flonum? s i] [flonum? i]
[quotient s i] [quotient i]
[remainder s i] [remainder i]
[quotient+remainder s i] [quotient+remainder i]
[number->string s i] [number->string i]
[string->number s i] [string->number i]
[flonum->string s i] [flonum->string i]
[symbol? s i] [symbol? i]
[gensym? s i] [gensym? i]
[gensym s i] [gensym i]
[getprop s i] [getprop i]
[putprop s i] [putprop i]
[remprop s i] [remprop i]
[property-list s i] [property-list i]
[string->symbol s i] [string->symbol i]
[symbol->string s i] [symbol->string i]
[gensym->unique-string s i] [gensym->unique-string i]
[symbol-bound? s i] [symbol-bound? i]
[symbol-value s i] [symbol-value i]
[set-symbol-value! s i] [set-symbol-value! i]
[top-level-bound? s ] [top-level-bound? ]
[top-level-value s ] [top-level-value ]
[set-top-level-value! s ] [set-top-level-value! ]
[make-guardian s i] [make-guardian i]
[make-input-port s i] [make-input-port i]
[make-output-port s i] [make-output-port i]
[make-input/output-port s i] [make-input/output-port i]
[port-output-index s i] [port-output-index i]
[port-output-size s i] [port-output-size i]
[port-output-buffer s i] [port-output-buffer i]
[set-port-output-index! s i] [set-port-output-index! i]
[set-port-output-size! s i] [set-port-output-size! i]
[port-input-buffer s i] [port-input-buffer i]
[port-input-index s i] [port-input-index i]
[port-input-size s i] [port-input-size i]
[set-port-input-index! s i] [set-port-input-index! i]
[set-port-input-size! s i] [set-port-input-size! i]
[*standard-input-port* s i] [*standard-input-port* i]
[*standard-output-port* s i] [*standard-output-port* i]
[*standard-error-port* s i] [*standard-error-port* i]
[*current-input-port* s i] [*current-input-port* i]
[*current-output-port* s i] [*current-output-port* i]
[output-port? s i] [output-port? i]
[input-port? s i] [input-port? i]
[port? s i] [port? i]
[port-name s i] [port-name i]
[input-port-name s i] [input-port-name i]
[output-port-name s i] [output-port-name i]
[open-input-file s i] [open-input-file i]
[with-input-from-file s i] [with-input-from-file i]
[with-output-to-file s i] [with-output-to-file i]
[open-output-file s i] [open-output-file i]
[open-output-string s i] [open-output-string i]
[get-output-string s i] [get-output-string i]
[close-input-port s i] [close-input-port i]
[close-output-port s i] [close-output-port i]
[console-input-port s i] [console-input-port i]
[console-output-port s i] [console-output-port i]
[current-input-port s i] [current-input-port i]
[current-output-port s i] [current-output-port i]
[standard-input-port s i] [standard-input-port i]
[standard-output-port s i] [standard-output-port i]
[standard-error-port s i] [standard-error-port i]
[flush-output-port s i] [flush-output-port i]
[reset-input-port! s i] [reset-input-port! i]
[display s i] [display i]
[write s i] [write i]
[write-char s i] [write-char i]
[read s i] [read i]
[read-char s i] [read-char i]
[read-token s i] [read-token i]
[peek-char s i] [peek-char i]
[unread-char s i] [unread-char i]
[newline s i] [newline i]
[printf s i] [printf i]
[format s i] [format i]
[pretty-print s i] [pretty-print i]
[comment-handler s i] [comment-handler i]
[print-gensym s i] [print-gensym i]
[gensym-count s i] [gensym-count i]
[gensym-prefix s i] [gensym-prefix i]
[make-hash-table s i] [make-hash-table i]
[hash-table? s i] [hash-table? i]
[get-hash-table s i] [get-hash-table i]
[put-hash-table! s i] [put-hash-table! i]
[make-parameter s i] [make-parameter i]
[apply s i] [apply i]
[values s i] [values i]
[call-with-values s i] [call-with-values i]
[call/cc s i] [call/cc i]
[call/cf s i] [call/cf i]
[dynamic-wind s i] [dynamic-wind i]
[error s i] [error i]
[print-error s i] [print-error i]
[error-handler s i] [error-handler i]
[interrupt-handler s i] [interrupt-handler i]
[exit s i] [exit i]
[compile-core-expr-to-port s i] [compile-core-expr-to-port i]
[eval-core s i] [eval-core i]
[load s i] [load i]
[assembler-output s i] [assembler-output i]
;[fasl-write s i] ;[fasl-write i]
[new-cafe s i] [new-cafe i]
[command-line-arguments s i] [command-line-arguments i]
[list*->code* s i] [list*->code* i]
[eval-top-level s i] [eval-top-level i]
[current-primitive-locations s i] [current-primitive-locations i]
[record? s i] [record? i]
[make-record-type s i] [make-record-type i]
[record-type-descriptor s i] [record-type-descriptor i]
[record-type-field-names s i] [record-type-field-names i]
[record-type-symbol s i] [record-type-symbol i]
[record-type-name s i] [record-type-name i]
[record-name s i] [record-name i]
[record-constructor s i] [record-constructor i]
[record-predicate s i] [record-predicate i]
[record-length s i] [record-length i]
[record-printer s i] [record-printer i]
[record-ref s i] [record-ref i]
[record-field-accessor s i] [record-field-accessor i]
[record-field-mutator s i] [record-field-mutator i]
[identifier? s i] [identifier? i]
[syntax-error s i] [syntax-error i]
[generate-temporaries s i] [generate-temporaries i]
[free-identifier=? s i] [free-identifier=? i]
[boot-library-expand s i] [boot-library-expand i]
[code? s i] [code? i]
[make-code s i] [make-code i]
[code-reloc-vector s i] [code-reloc-vector i]
[set-code-reloc-vector! s i] [set-code-reloc-vector! i]
[code-size s i] [code-size i]
[code-freevars s i] [code-freevars i]
[code-ref s i] [code-ref i]
[code-set! s i] [code-set! i]
[immediate? s i] [immediate? i]
[pointer-value s i] [pointer-value i]
[installed-libraries s i] [installed-libraries i]
[library-subst/env s i] [library-subst/env i]
[find-library-by-name s i] [find-library-by-name i]
[imported-label->binding s i] [imported-label->binding i]
[imported-loc->library s i] [imported-loc->library i]
[library-spec s i] [library-spec i]
[current-library-collection s i] [current-library-collection i]
[invoke-library s i] [invoke-library i]
; (ikarus system $pairs) ; (ikarus system $pairs)
[$car $pairs] [$car $pairs]
[$cdr $pairs] [$cdr $pairs]