scribble/decode: fix problems with end-of-file section starters
Closes #146
This commit is contained in:
parent
84f5301ac0
commit
af75ceeec3
|
@ -258,9 +258,6 @@
|
|||
[(list? (car l))
|
||||
(loop (append (car l) (cdr l))
|
||||
next? keys colls accum title tag-prefix tags vers style)]
|
||||
[(null? (cdr l))
|
||||
(loop null #f keys colls (cons (car l) accum) title tag-prefix tags
|
||||
vers style)]
|
||||
[(part-index-decl? (car l))
|
||||
(loop (cdr l) next? (cons (car l) keys) colls accum title tag-prefix
|
||||
tags vers style)]
|
||||
|
@ -272,6 +269,9 @@
|
|||
(loop (cdr l) next? keys colls accum title tag-prefix
|
||||
(append tags (list (part-tag-decl-tag (car l))))
|
||||
vers style)]
|
||||
[(null? (cdr l))
|
||||
(loop null #f keys colls (cons (car l) accum) title tag-prefix tags
|
||||
vers style)]
|
||||
[(and (pair? (cdr l))
|
||||
(or (splice? (cadr l))
|
||||
(list? (cadr l))))
|
||||
|
|
Loading…
Reference in New Issue
Block a user