Check-in [a71834a427]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:include fixes for fmt
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a71834a427f07b00fc0bdbb4782eec20765a3f83
User & Date: aldo 2016-12-08 00:43:52
Context
2016-12-08
00:45
added libinit to sqlite3 check-in: d1aa1ba6b3 user: aldo tags: trunk
00:43
include fixes for fmt check-in: a71834a427 user: aldo tags: trunk
00:42
added binary-port->string check-in: 3373c30b1e user: aldo tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to fmt/fmt.sls.

29
30
31
32
33
34
35


36
37
38
39
40
41
42

43
44
45
	 (import (chezscheme) 
		 (only (srfi s13 strings) string-count string-index
		       string-index-right 
		       string-concatenate string-concatenate-reverse  
		       substring/shared reverse-list->string string-tokenize
		       string-suffix? string-prefix?)
		 (srfi private let-opt)


		 (only (srfi s1 lists) fold length+))

	 (include "hash-compat.scm")
	 (include "mantissa.scm")
	 (include "read-line.scm")
	 (include "string-ports.scm")
	 (include "fmt.scm")

	 (include "fmt-column.scm")
	 (include "fmt-pretty.scm")
	 )







>
>


|
|
|
|
<
>
|
|

29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

44
45
46
47
	 (import (chezscheme) 
		 (only (srfi s13 strings) string-count string-index
		       string-index-right 
		       string-concatenate string-concatenate-reverse  
		       substring/shared reverse-list->string string-tokenize
		       string-suffix? string-prefix?)
		 (srfi private let-opt)
		 (srfi private include)
		 (scheme)
		 (only (srfi s1 lists) fold length+))

	 (include/resolve ("fmt") "hash-compat.scm")
	 (include/resolve ("fmt") "mantissa.scm")
	 (include/resolve ("fmt") "read-line.scm")
	 (include/resolve ("fmt") "string-ports.scm")

	 (include/resolve ("fmt") "fmt.scm")
	 (include/resolve ("fmt") "fmt-column.scm")
	 (include/resolve ("fmt") "fmt-pretty.scm")
	 )