From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/6868 Path: main.gmane.org!not-for-mail From: Miller Maley Newsgroups: gmane.comp.tex.context Subject: Bug in block mechanism? Date: Sat, 9 Feb 2002 15:03:40 -0500 Sender: owner-ntg-context@let.uu.nl Message-ID: <1C918A41-1D98-11D6-8BA9-0003935A7A70@idaccr.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (Apple Message framework v475) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035397372 14479 80.91.224.250 (23 Oct 2002 18:22:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 18:22:52 +0000 (UTC) Original-To: ntg-context@ntg.nl Xref: main.gmane.org gmane.comp.tex.context:6868 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:6868 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