From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/20716 Path: news.gmane.org!not-for-mail From: Mojca Miklavec Newsgroups: gmane.comp.tex.context Subject: small bugfix: module t-rsteps, more than 9 slides not possible Date: Tue, 07 Jun 2005 22:44:50 +0200 Message-ID: <42A60742.5090109@gmail.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1118176929 10142 80.91.229.2 (7 Jun 2005 20:42:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 7 Jun 2005 20:42:09 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Tue Jun 07 22:42:01 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dfkso-0005wo-0E for gctc-ntg-context-518@m.gmane.org; Tue, 07 Jun 2005 22:41:10 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 684451279F; Tue, 7 Jun 2005 22:45:05 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 10070-03-4; Tue, 7 Jun 2005 22:45:00 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id CBA6B127A0; Tue, 7 Jun 2005 22:45:00 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 62B6C127A0 for ; Tue, 7 Jun 2005 22:44:59 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 10070-03-3 for ; Tue, 7 Jun 2005 22:44:58 +0200 (CEST) Original-Received: from avs4.arnes.si (avs4.arnes.si [193.2.1.77]) by ronja.ntg.nl (Postfix) with ESMTP id 854371279F for ; Tue, 7 Jun 2005 22:44:58 +0200 (CEST) Original-Received: from localhost (avs4.arnes.si [193.2.1.77]) by avs4.arnes.si (Postfix) with ESMTP id D59352C3591 for ; Tue, 7 Jun 2005 22:44:57 +0200 (CEST) Original-Received: from avs4.arnes.si ([193.2.1.77]) by localhost (avs4.arnes.si [193.2.1.77]) (amavisd-new, port 10024) with ESMTP id 23665-03 for ; Tue, 7 Jun 2005 22:44:57 +0200 (CEST) Original-Received: from [141.84.28.166] (a166.lmu.vpn.lrz-muenchen.de [141.84.28.166]) by avs4.arnes.si (Postfix) with ESMTP id 86E002C3585 for ; Tue, 7 Jun 2005 22:44:53 +0200 (CEST) User-Agent: Mozilla/4.5-4.75 (Windows; U; Windows NT 5.1; sl-SI; rv:1.4) Gecko/20030624 Netscape/7.1 X-Accept-Language: sl, en, en-us, de Original-To: mailing list for ConTeXt users X-Virus-Scanned: by amavisd-new at arnes.si X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on smtp.ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:20716 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:20716 \FromStep[10] doesn't work in the following program: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usemodule[rsteps] \setupcolor[state=start] \definehead[Subject][subject] \setuphead[Subject][page=yes,style=\bfb] \starttext \StartSteps[Title] a \FromStep[9]{b} \FromStep[10]{c} \StopSteps \stoptext %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% The problem lies in: \def\FromStep[#1]{% \steps@updatenumber#1% ... The second line should be \steps@updatenumber(#1)% otherwise \steps@Updatenumber becomes only 1 as input and typesets the zero on the document. In the same art some more lines are to be fixed. Mojca