Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify library name #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions builder.scm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; (json builder) --- Guile JSON implementation.
;;; (chez-json builder) --- Guile JSON implementation.

;; Copyright (C) 2013 Aleix Conchillo Flaque <[email protected]>
;; Copyright (C) 2015,2016 Jan Nieuwenhuizen <[email protected]>
Expand Down Expand Up @@ -26,7 +26,7 @@

;;; Code:

(library (json builder)
(library (chez-json builder)
(export scm->json
scm->json-string)
(import (chezscheme))
Expand Down
10 changes: 5 additions & 5 deletions json.scm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; (json) --- Guile JSON implementation.
;;; (chez-json json) --- Guile JSON implementation.

;; Copyright (C) 2013 Aleix Conchillo Flaque <[email protected]>
;;
Expand All @@ -25,17 +25,17 @@

;;; Code:

(library (json json)
(library (chez-json json)
(export json
scm->json
scm->json-string
json->scm
json-string->scm
json-parser?
json-parser-port)
(import (json builder)
(json parser)
(json syntax)))
(import (chez-json builder)
(chez-json parser)
(chez-json syntax)))

;(define-syntax re-export-modules
; (syntax-rules ()
Expand Down
2 changes: 1 addition & 1 deletion package.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(("name" . "chez-json")
("version" . "0.5.1")
("version" . "0.5.2")
("description" . "a JSON module for Chez")
("keywords"
("json"))
Expand Down
4 changes: 2 additions & 2 deletions parser.scm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; (json parser) --- Guile JSON implementation.
;;; (chez-json parser) --- Guile JSON implementation.

;; Copyright (C) 2013 Aleix Conchillo Flaque <[email protected]>
;;
Expand Down Expand Up @@ -26,7 +26,7 @@
;;; Code:

#!chezscheme
(library (json parser)
(library (chez-json parser)
(export json->scm
json-string->scm
json-parser?
Expand Down
4 changes: 2 additions & 2 deletions syntax.scm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; (json syntax) --- Guile JSON implementation.
;;; (chez-json syntax) --- Guile JSON implementation.

;; Copyright (C) 2013 Aleix Conchillo Flaque <[email protected]>
;;
Expand All @@ -25,7 +25,7 @@

;;; Code:

(library (json syntax)
(library (chez-json syntax)
(export json)
(import (chezscheme))

Expand Down