scribble: recognize 'exact-chars even when a style name is #f

Patch from Tero Hasu.

original commit: 30a354c820160d8816746567403ee1a0f34f192a
This commit is contained in:
Matthew Flatt 2014-07-29 16:51:19 +01:00
parent e17c2db777
commit a05ce99d9b
2 changed files with 11 additions and 4 deletions

View File

@ -876,13 +876,16 @@ The following @tech{style properties} are currently recognized:
suitable for Latex @tt{tt} mode.}
@item{@racket['exact-chars] --- For Latex output, when the @tech{style
name} is a string, render the elements content exactly
name} is a string or @racket[#f], render the elements content exactly
(without escapes).}
@item{@racket[command-extras] structure --- For Latex output,
adds strings as arguments to the Latex command.}
]}
]
@history[#:changed "1.6" @elem{Changed @racket['exact-chars] handling to
take effect when the style name is @racket[#f].}]}
@defstruct[(image-element element) ([path (or/c path-string?

View File

@ -414,9 +414,9 @@
(parameterize ([rendering-tt (or tt? (rendering-tt))])
(super render-content e part ri))]))]
[wrap (lambda (e s tt?)
(printf "\\~a{" s)
(when s (printf "\\~a{" s))
(core-render e tt?)
(printf "}"))])
(when s (printf "}")))])
(define (finish tt?)
(cond
[(symbol? style-name)
@ -465,6 +465,10 @@
(printf "}")))]
[else
(wrap e style-name tt?)]))]
[(and (not style-name)
style
(memq 'exact-chars (style-properties style)))
(wrap e style-name 'exact)]
[else
(core-render e tt?)]))
(let loop ([l (if style (style-properties style) null)] [tt? #f])