scribble/decode: fix problems with end-of-file section starters

Closes #146
This commit is contained in:
Matthew Flatt 2017-10-09 06:56:09 -07:00
parent 84f5301ac0
commit af75ceeec3

View File

@ -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))))