Fixed misnamed export
* goof.scm: in-vector-reverse and in-string-reverse now properly exported.
This commit is contained in:
parent
832c414260
commit
050f88d678
1 changed files with 4 additions and 4 deletions
8
goof.scm
8
goof.scm
|
@ -57,8 +57,8 @@
|
||||||
in-list
|
in-list
|
||||||
in-lists
|
in-lists
|
||||||
|
|
||||||
in-vector in-reverse-vector
|
in-vector in-vector-reverse
|
||||||
in-string in-reverse-string
|
in-string in-string-reverse
|
||||||
in-hash
|
in-hash
|
||||||
|
|
||||||
in-port
|
in-port
|
||||||
|
@ -95,8 +95,8 @@
|
||||||
;; default and I had to wrap it in something. Paremeters are available in the default environment
|
;; default and I had to wrap it in something. Paremeters are available in the default environment
|
||||||
;; boxes are not.
|
;; boxes are not.
|
||||||
(define valid-for-clauses (make-parameter (list #'in #'in-list #'in-lists
|
(define valid-for-clauses (make-parameter (list #'in #'in-list #'in-lists
|
||||||
#'in-vector #'in-reverse-vector
|
#'in-vector #'in-vector-reverse
|
||||||
#'in-string #'in-reverse-string
|
#'in-string #'in-string-reverse
|
||||||
#'in-hash
|
#'in-hash
|
||||||
#'in-port
|
#'in-port
|
||||||
#'in-file
|
#'in-file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue