[Ttssh2-commit] [4640] ANSIColor の 0 番の設定を正しく読み込めない問題を修正。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 9月 16日 (金) 19:48:55 JST


Revision: 4640
          http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4640
Author:   doda
Date:     2011-09-16 19:48:55 +0900 (Fri, 16 Sep 2011)

Log Message:
-----------
ANSIColor の 0 番の設定を正しく読み込めない問題を修正。

Modified Paths:
--------------
    trunk/doc/en/html/about/history.html
    trunk/doc/ja/html/about/history.html
    trunk/teraterm/ttpset/ttset.c


-------------- next part --------------
Modified: trunk/doc/en/html/about/history.html
===================================================================
--- trunk/doc/en/html/about/history.html	2011-09-16 09:53:54 UTC (rev 4639)
+++ trunk/doc/en/html/about/history.html	2011-09-16 10:48:55 UTC (rev 4640)
@@ -44,6 +44,7 @@
     <ul>
       <li>XMODEM: The first packet is sent out twice by using the xmodem sending function. <br>cf. <a href="http://logmett.com/forum/viewtopic.php?f=2&t=354">why the first xmodem packet been always send out twice?</a></li>
       <!--li><a href="../macro/command/ifdefined.html">ifdefined</a>‚ɐ®”ƒŠƒeƒ‰ƒ‹‚ð“n‚·‚Æ"®”Œ^•Ï”"‚Æ”»’è‚·‚é–â‘è‚ðC³‚µ‚½B</li-->
+      <!-- li>ANSI Color ‚Ì 0 ”Ԃ̐ݒ肪³‚µ‚­“ǂݍž‚ß‚È‚¢–â‘è‚ðC³‚µ‚½B</li -->
     </ul>
   </li>
 

Modified: trunk/doc/ja/html/about/history.html
===================================================================
--- trunk/doc/ja/html/about/history.html	2011-09-16 09:53:54 UTC (rev 4639)
+++ trunk/doc/ja/html/about/history.html	2011-09-16 10:48:55 UTC (rev 4640)
@@ -43,6 +43,7 @@
     <ul>
       <li>XMODEM: ‘—MŽžA‰‰ñ‚̃pƒPƒbƒg‚ª2‰ñ‘—‚ç‚ê‚é–â‘è‚ðC³‚µ‚½B<br>cf. <a href="http://logmett.com/forum/viewtopic.php?f=2&t=354">why the first xmodem packet been always send out twice?</a></li>
       <li><a href="../macro/command/ifdefined.html">ifdefined</a>‚ɐ®”ƒŠƒeƒ‰ƒ‹‚ð“n‚·‚Æ"®”Œ^•Ï”"‚Æ”»’è‚·‚é–â‘è‚ðC³‚µ‚½B</li>
+      <li>ANSI Color ‚Ì 0 ”Ԃ̐ݒ肪³‚µ‚­“ǂݍž‚ß‚È‚¢–â‘è‚ðC³‚µ‚½B</li>
     </ul>
   </li>
 

Modified: trunk/teraterm/ttpset/ttset.c
===================================================================
--- trunk/teraterm/ttpset/ttset.c	2011-09-16 09:53:54 UTC (rev 4639)
+++ trunk/teraterm/ttpset/ttset.c	2011-09-16 10:48:55 UTC (rev 4640)
@@ -558,7 +558,7 @@
 			if (*t == ',')
 				n++;
 		n /= 4;
-		for (i = 0; i <= n; i++) {
+		for (i = 0; i < n; i++) {
 			int colorid, r, g, b;
 			GetNthNum(Temp, i * 4 + 1, (int far *) &colorid);
 			GetNthNum(Temp, i * 4 + 2, (int far *) &r);



Ttssh2-commit メーリングリストの案内
Back to archive index