svnno****@sourc*****
svnno****@sourc*****
2011年 8月 24日 (水) 19:43:12 JST
Revision: 4597 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4597 Author: yutakapon Date: 2011-08-24 19:43:12 +0900 (Wed, 24 Aug 2011) Log Message: ----------- ãå¼ã¨æ¼ç®åãã¸ã®ãªã³ã¯ã追å ããã <int> ãã <expression> ã¸ã®å¤æ´ã Modified Paths: -------------- trunk/doc/en/html/macro/command/doloop.html trunk/doc/en/html/macro/command/ifthenelseif.html trunk/doc/en/html/macro/command/until.html trunk/doc/en/html/macro/command/while.html trunk/doc/ja/html/macro/command/doloop.html trunk/doc/ja/html/macro/command/ifthenelseif.html trunk/doc/ja/html/macro/command/until.html trunk/doc/ja/html/macro/command/while.html -------------- next part -------------- Modified: trunk/doc/en/html/macro/command/doloop.html =================================================================== --- trunk/doc/en/html/macro/command/doloop.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/en/html/macro/command/doloop.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,18 +18,18 @@ </p> <pre class="macro-syntax"> -do [ { while | until } <int> (option)]<br> +do [ { while | until } <expression> (option)]<br> ...<br> ...<br> -loop [ { while | until } <int> (option)] +loop [ { while | until } <expression> (option)] </pre> <h2>Remarks</h2> <p> Repeats the statements between 'do' and 'loop' according to condition as follows. -If 'while' specified, repeats while <int> is non-zero. -If 'until' specified, repeats while <int> is zero. +If 'while' specified, repeats while <expression> is non-zero. +If 'until' specified, repeats while <expression> is zero. </p> <h2>Example</h2> @@ -52,5 +52,9 @@ loop while result = 2 </pre> +<h2>Reference</h2> + +<a href="..\syntax\expressions.html">Expressions and operators</a><br> + </body> </html> Modified: trunk/doc/en/html/macro/command/ifthenelseif.html =================================================================== --- trunk/doc/en/html/macro/command/ifthenelseif.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/en/html/macro/command/ifthenelseif.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -20,13 +20,13 @@ <h2>1) Format 1</h2> <pre class="macro-syntax"> -if <int> <statement> +if <expression> <statement> </pre> <h3>Remarks</h3> <p> -Executes a <statement>, if <int> is non-zero. +Executes a <statement>, if <expression> is true(non-zero). </p> <h3>Example</h3> @@ -43,17 +43,17 @@ <h2>2) Format 2</h2> <pre class="macro-syntax"> -if <int 1> then +if <expression 1> then ... - (Statements for the case: <int 1> is true (non-zero).) + (Statements for the case: <expression 1> is true (non-zero).) ... -[elseif <int 2> then] +[elseif <expression 2> then] ... - (Statements for the case: <int 1> is false (zero) and <int 2> is true.) + (Statements for the case: <expression 1> is false (zero) and <expression 2> is true.) ... -[elseif <int N> then] +[elseif <expression N> then] ... - (Statements for the case: <int 1>, <int 2>,... and <int N-1> are all false, and <int N> is true.) + (Statements for the case: <expression 1>, <expression 2>,... and <expression N-1> are all false, and <expression N> is true.) ... [else] ... @@ -96,5 +96,9 @@ endif </pre> +<h2>Reference</h2> + +<a href="..\syntax\expressions.html">Expressions and operators</a><br> + </body> </html> Modified: trunk/doc/en/html/macro/command/until.html =================================================================== --- trunk/doc/en/html/macro/command/until.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/en/html/macro/command/until.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,7 +18,7 @@ </p> <pre class="macro-syntax"> -until <int><br> +until <expression><br> ...<br> ...<br> enduntil @@ -27,7 +27,7 @@ <h2>Remarks</h2> <p> -Repeats the statements between 'until' and 'enduntil' while <int> is zero. +Repeats the statements between 'until' and 'enduntil' while <expression> is zero. </p> <h2>Example</h2> @@ -40,5 +40,9 @@ enduntil </pre> +<h2>Reference</h2> + +<a href="..\syntax\expressions.html">Expressions and operators</a><br> + </body> </html> Modified: trunk/doc/en/html/macro/command/while.html =================================================================== --- trunk/doc/en/html/macro/command/while.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/en/html/macro/command/while.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,7 +18,7 @@ </p> <pre class="macro-syntax"> -while <int><br> +while <expression><br> ...<br> ...<br> endwhile @@ -27,7 +27,7 @@ <h2>Remarks</h2> <p> -Repeats the statements between 'while' and 'endwhile' while <int> is non-zero. +Repeats the statements between 'while' and 'endwhile' while <expression> is non-zero. </p> <h2>Example</h2> @@ -40,5 +40,9 @@ endwhile </pre> +<h2>Reference</h2> + +<a href="..\syntax\expressions.html">Expressions and operators</a><br> + </body> </html> Modified: trunk/doc/ja/html/macro/command/doloop.html =================================================================== --- trunk/doc/ja/html/macro/command/doloop.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/ja/html/macro/command/doloop.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,17 +18,17 @@ </p> <pre class="macro-syntax"> -do [ { while | until } <int> (option)]<br> +do [ { while | until } <expression> (option)]<br> ...<br> ...<br> -loop [ { while | until } <int> (option)] +loop [ { while | until } <expression> (option)] </pre> <h2>ðà</h2> <p> 'do' Æ 'loop' ÌÔÌR}hðAð®É]ÁÄJèÔ·B<br> -ð®ÍAwhile ÌêÍ<int> ª0ÈOÅ éÀèAuntil ÌêÍ<int>ª0Å éÀèJèÔ·B<br> +ð®ÍAwhile ÌêÍ<expression> ª0ÈOÅ éÀèAuntil ÌêÍ<expression>ª0Å éÀèJèÔ·B<br> 'do' Éð®ðwèµ½êÍAðÉæÁÄÍêxà[vªÀs³êÈ¢êª éB'loop' Éð®ðwèµ½êÍAÅá1xÍ[vªÀs³êéBÇ¿çÉàððwèµÈ©Á½êÍA³À[vÆÈéB </p> @@ -52,5 +52,9 @@ loop while result = 2 </pre> +<h2>QÆ</h2> + +<a href="..\syntax\expressions.html">®ÆZq</a><br> + </body> </html> Modified: trunk/doc/ja/html/macro/command/ifthenelseif.html =================================================================== --- trunk/doc/ja/html/macro/command/ifthenelseif.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/ja/html/macro/command/ifthenelseif.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -20,13 +20,13 @@ <h2>1) ®1</h2> <pre class="macro-syntax"> -if <int> <statement> +if <expression> <statement> </pre> <h3>ðà</h3> <p> -ൠ<int> ª0ÈOÈçÎAR}h <statement> ðÀs·éB +ൠ<expression> ª^(0ÈO)ÈçÎAR}h <statement> ðÀs·éB </p> <h3>á</h3> @@ -43,17 +43,17 @@ <h2>2) ®2</h2> <pre class="macro-syntax"> -if <int 1> then +if <expression 1> then ... - (<int 1> ª^(0ÈO)ÌêÉÀs³êéR}h) + (<expression 1> ª^(0ÈO)ÌêÉÀs³êéR}h) ... -[elseif <int 2> then] +[elseif <expression 2> then] ... - (<int 1> ªU(0)ÅA<int 2>ª^ÌêÉÀs³êéR}h) + (<expression 1> ªU(0)ÅA<expression 2>ª^ÌêÉÀs³êéR}h) ... -[elseif <int N> then] +[elseif <expression N> then] ... - (<int 1>, <int 2>,.., <int N-1> ª·×ÄUÅA<int N> ª^ÌêÉÀs³êéR}h) + (<expression 1>, <expression 2>,.., <expression N-1> ª·×ÄUÅA<expression N> ª^ÌêÉÀs³êéR}h) ... [else] ... @@ -96,5 +96,10 @@ endif </pre> + +<h2>QÆ</h2> + +<a href="..\syntax\expressions.html">®ÆZq</a><br> + </body> </html> Modified: trunk/doc/ja/html/macro/command/until.html =================================================================== --- trunk/doc/ja/html/macro/command/until.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/ja/html/macro/command/until.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,7 +18,7 @@ </p> <pre class="macro-syntax"> -until <int><br> +until <expression><br> ...<br> ...<br> enduntil @@ -27,7 +27,7 @@ <h2>ðà</h2> <p> -'until' Æ 'enduntil' ÌÔÌR}hðA <int> ª0Å éÀèAJèÔ·B +'until' Æ 'enduntil' ÌÔÌR}hðA <expression> ª0Å éÀèAJèÔ·B </p> <h2>á</h2> @@ -40,5 +40,9 @@ enduntil </pre> +<h2>QÆ</h2> + +<a href="..\syntax\expressions.html">®ÆZq</a><br> + </body> </html> Modified: trunk/doc/ja/html/macro/command/while.html =================================================================== --- trunk/doc/ja/html/macro/command/while.html 2011-08-23 03:29:45 UTC (rev 4596) +++ trunk/doc/ja/html/macro/command/while.html 2011-08-24 10:43:12 UTC (rev 4597) @@ -18,7 +18,7 @@ </p> <pre class="macro-syntax"> -while <int><br> +while <expression><br> ...<br> ...<br> endwhile @@ -27,7 +27,7 @@ <h2>ðà</h2> <p> -'while' Æ 'endwhile' ÌÔÌR}hðA <int> ª0ÈOÅ éÀèAJèÔ·B +'while' Æ 'endwhile' ÌÔÌR}hðA <expression> ª0ÈOÅ éÀèAJèÔ·B </p> <h2>á</h2> @@ -40,5 +40,9 @@ endwhile </pre> +<h2>QÆ</h2> + +<a href="..\syntax\expressions.html">®ÆZq</a><br> + </body> </html>