After upgrading from ConTeXt stable to beta, any code containing subfootnote does not compile. E.g.:
\definestructureconversionset [footnote] [numbers, Characters] [numbers]
\setupenumerations [footnote] [numberconversionset=footnote]
\starttext
\startlines
This is some text.\footnote{This is a footnote.}
This is some more text.\subfootnote{This is a subfootnote.}
\stoplines
\stoptext
This code, adapted from How to set footnotes to use a combination of two numbering formats in ConTeXt?, fails to compile and returns an error on line 6, or essentially any line where \subfootnote is placed with the message "Missing number, treated as zero."
Similarly, \donote[subfootnote][]{} and \setnotetext[subfootnote][]{}, commands needed when placing subfootnotes inside mathmode environments, have problems compiling after this update.
- Has the syntax of
\subfootnotebeen changed or entirely removed from ConTeXt beta? Is there a new way to typeset subfootnotes? - Does the error "Missing number, treated as zero." indicate that I need to add a number somewhere to
\subfootnote?

\setupnotation[footnote][numberconversionset=footnote], however, the error about a missing number still appears for every line containing\subfootnote{}. – Village Aug 21 '12 at 23:56