When I upgraded from ConTeXt 2001.2.27 to 2001.11.13, something broke
in the block mechanism. When I create hidden blocks in different
chapters and
try to recall them at the end of the document, only the first block is
typeset.
A small test case is below. The block "foo" shows up but "bar" does not.
I get the same result when the two \useblocks lines are replaced by
a single line \useblocks[note]. But if I take out the \chapter
commands, it works.
-- Miller Maley
\setupoutput[pdftex]
\defineblock[note]
\hideblocks[note]
\starttext
\chapter[chp:one]{First}
Text for chapter one.
\beginnote[foo]
note is foo
\endnote
\chapter[chp:two]{Second}
Text for chapter two.
\beginnote[bar]
note is bar
\endnote
\chapter[chp:notes]{Notes}
\useblocks[note][foo]
\useblocks[note][bar]
\stoptext