macros chapter in guide
svn: r9927 original commit: 6a93d0c531c75aba685ad31644317e4f8d819cfd
This commit is contained in:
parent
84d05633df
commit
e516be8dd4
|
@ -173,6 +173,7 @@
|
|||
(cond
|
||||
[(and v (hash-ref ht v #f))
|
||||
=> (lambda (v) v)]
|
||||
[(syntax? v) (make-literal-syntax v)]
|
||||
[(string? v) (install ht v (string-copy v))]
|
||||
[(bytes? v) (install ht v (bytes-copy v))]
|
||||
[(pair? v)
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
(list
|
||||
(datum->syntax
|
||||
#'filename
|
||||
`(code:comment (unsyntax (t "In \"" ,#'filename "\":")))
|
||||
`(code:comment (unsyntax (t "In \"" ,(syntax-e #'filename) "\":")))
|
||||
#'filename))
|
||||
null)])
|
||||
(syntax/loc stx (schemeblock file ... modtag rest ...)))]
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
current-meta-list
|
||||
|
||||
(struct-out shaped-parens)
|
||||
(struct-out just-context))
|
||||
(struct-out just-context)
|
||||
(struct-out literal-syntax))
|
||||
|
||||
(define no-color "schemeplain")
|
||||
(define reader-color "schemereader")
|
||||
|
@ -121,7 +122,9 @@
|
|||
(memq (syntax-e c) (current-variable-list)))]
|
||||
[(s it? sub?)
|
||||
(let ([sc (syntax-e c)])
|
||||
(let ([s (format "~s" sc)])
|
||||
(let ([s (format "~s" (if (literal-syntax? sc)
|
||||
(literal-syntax-stx sc)
|
||||
sc))])
|
||||
(if (and (symbol? sc)
|
||||
((string-length s) . > . 1)
|
||||
(char=? (string-ref s 0) #\_)
|
||||
|
@ -654,6 +657,7 @@
|
|||
|
||||
(define-struct shaped-parens (val shape))
|
||||
(define-struct just-context (val ctx))
|
||||
(define-struct literal-syntax (stx))
|
||||
|
||||
(define-struct graph-reference (bx))
|
||||
(define-struct graph-defn (r bx))
|
||||
|
|
Loading…
Reference in New Issue
Block a user