Skip to content

Commit b0c8910

Browse files
committed
Fixes scribble bug #25
1 parent c34a69c commit b0c8910

File tree

1 file changed

+3
-3
lines changed
  • scribble-lib/scribble/private

1 file changed

+3
-3
lines changed

scribble-lib/scribble/private/lp.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
(make-splice
6262
(list (make-toc-element
6363
#f
64-
(list (elemtag '(chunk tag)
64+
(list (elemtag '(chunk (prefixable tag))
6565
(bold (italic (racket name)) " ::=")))
66-
(list (smaller (elemref '(chunk tag) #:underline? #f
66+
(list (smaller (elemref '(chunk (prefixable tag)) #:underline? #f
6767
str
6868
rest (... ...)))))
6969
(racketblock expr (... ...)))))))])))
@@ -77,7 +77,7 @@
7777
(identifier? #'id)
7878
(with-syntax ([tag (format "~a:1" (syntax-e #'id))]
7979
[str (format "~a" (syntax-e #'id))])
80-
#'(elemref '(chunk tag) #:underline? #f str))]))
80+
#'(elemref '(chunk (prefixable tag)) #:underline? #f str))]))
8181

8282

8383
(provide (all-from-out scheme/base

0 commit comments

Comments
 (0)