|
From: | Emacs bug Tracking System |
Subject: | bug#322: marked as done (off-by-one in doc/misc/cl.texi) |
Date: | Thu, 29 May 2008 20:10:07 -0700 |
Your message dated Thu, 29 May 2008 23:02:35 -0400 with message-id <jwvwslc7avo.fsf-monnier+emacsbugreports@gnu.org> and subject line Re: bug#322: off-by-one in doc/misc/cl.texi has caused the Emacs bug report #322, regarding off-by-one in doc/misc/cl.texi to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact don@donarmstrong.com immediately.) -- 322: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=322 Emacs Bug Tracking System Contact don@donarmstrong.com with problems
--- Begin Message ---Subject: off-by-one in doc/misc/cl.texi Date: Tue, 27 May 2008 02:28:51 -0700 node "Iteration Clauses" says @example (loop repeat n do ...) (loop for temp to n do ...) @end example @noindent are identical except that the second one forces you to choose a name for a variable you aren't actually going to use. except they aren't identical. the repeat loop runs n times, the for loop runs n+1 times.
--- End Message ---
--- Begin Message ---Subject: Re: bug#322: off-by-one in doc/misc/cl.texi Date: Thu, 29 May 2008 23:02:35 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) > except they aren't identical. > the repeat loop runs n times, the for loop runs n+1 times. Thanks, I've fixed the examples to be identical, Stefan
--- End Message ---
[Prev in Thread] | Current Thread | [Next in Thread] |