updating old module definitions

This commit is contained in:
Alex Shinn 2011-11-04 19:04:53 +09:00
parent 8146be0250
commit 5386fb9a16
2 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
(define-module (chibi net http) (define-library (chibi net http)
(export http-get call-with-input-url with-input-from-url (export http-get call-with-input-url with-input-from-url
http-parse-request http-parse-form) http-parse-request http-parse-form)
(import-immutable (scheme) (srfi 39) (chibi net) (chibi io) (import (scheme) (srfi 39) (chibi net) (chibi io)
(chibi uri) (chibi mime)) (chibi uri) (chibi mime))
(include "http.scm")) (include "http.scm"))

View file

@ -1,6 +1,6 @@
(module (chibi term edit-line) (define-library (chibi term edit-line)
(export edit-line edit-line-repl make-history history-insert! history-commit! (export edit-line edit-line-repl make-history history-insert!
history->list list->history buffer->string) history-commit! history->list list->history buffer->string)
(import-immutable (scheme) (chibi stty) (srfi 9)) (import (scheme) (chibi stty) (srfi 9))
(include "edit-line.scm")) (include "edit-line.scm"))