hixie: Make the 'find a number' algorithm interact correctly with the parent algorithm. (whatwg r4328)

hixie: Make the 'find a number' algorithm interact correctly with the
parent algorithm. (whatwg r4328)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3463&r2=1.3464&f=h
http://html5.org/tools/web-apps-tracker?from=4327&to=4328

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3463
retrieving revision 1.3464
diff -u -d -r1.3463 -r1.3464
--- Overview.html 25 Oct 2009 06:50:28 -0000 1.3463
+++ Overview.html 25 Oct 2009 07:08:47 -0000 1.3464
@@ -2649,11 +2649,13 @@
    <li>Otherwise, return <var title="">number1</var> and
    <var title="">number2</var>.</li>
 
-  </ol><p>The algorithm to <dfn id="find-a-number">find a number</dfn> is as follows. It is
-  given a string and a starting position, and returns either nothing,
-  a number, or an error condition.</p>
+  </ol><p>The algorithm to <dfn id="find-a-number">find a number</dfn> is as follows. It
+  returns either nothing, a number, or an error condition.</p>
 
-  <ol><li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> that are not
+  <ol><li><p>Let <var title="">input</var> and <var title="">position</var> be the same variables as those of the same
+   name in the algorithm that invoked these steps.</li>
+
+   <li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> that are not
    U+002E FULL STOP characters (.) and are not characters in the range
    U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9).</li>

Received on Sunday, 25 October 2009 07:09:35 UTC