[Ttssh2-commit] [4221] VT ウィンドウの横幅を 256 桁より大きくすると正常に表示できないのを修正。

アーカイブの一覧に戻る

svnno****@sourc***** svnno****@sourc*****
2010年 12月 17日 (金) 13:10:58 JST


Revision: 4221
          http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4221
Author:   doda
Date:     2010-12-17 13:10:58 +0900 (Fri, 17 Dec 2010)

Log Message:
-----------
VT ウィンドウの横幅を 256 桁より大きくすると正常に表示できないのを修正。
http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=18206
http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=19632

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


-------------- next part --------------
Modified: trunk/doc/en/html/about/history.html
===================================================================
--- trunk/doc/en/html/about/history.html	2010-12-17 04:04:10 UTC (rev 4220)
+++ trunk/doc/en/html/about/history.html	2010-12-17 04:10:58 UTC (rev 4221)
@@ -44,7 +44,7 @@
 
   <!-- li>Bug fixes
     <ul>
-      <li></li>
+      <li>’[––‚̉¡•‚ª 256 Œ…‚æ‚è‘å‚«‚¢‚Ɛ³í‚É•\Ž¦‚Å‚«‚È‚¢–â‘è‚ðC³‚µ‚½B</li>
     </ul>
   </li -->
 

Modified: trunk/doc/ja/html/about/history.html
===================================================================
--- trunk/doc/ja/html/about/history.html	2010-12-17 04:04:10 UTC (rev 4220)
+++ trunk/doc/ja/html/about/history.html	2010-12-17 04:10:58 UTC (rev 4221)
@@ -42,11 +42,11 @@
     </ul>
   </li>
 
-  <!-- li>ƒoƒOC³
+  <li>ƒoƒOC³
     <ul>
-      <li></li>
+      <li>’[––‚̉¡•‚ª 256 Œ…‚æ‚è‘å‚«‚¢‚Ɛ³í‚É•\Ž¦‚Å‚«‚È‚¢–â‘è‚ðC³‚µ‚½B</li>
     </ul>
-  </li -->
+  </li>
 
   <li>‚»‚Ì‘¼
     <ul>

Modified: trunk/teraterm/teraterm/vtdisp.c
===================================================================
--- trunk/teraterm/teraterm/vtdisp.c	2010-12-17 04:04:10 UTC (rev 4220)
+++ trunk/teraterm/teraterm/vtdisp.c	2010-12-17 04:10:58 UTC (rev 4221)
@@ -44,7 +44,7 @@
 static int WinWidthOld, WinHeightOld;
 static HBRUSH Background;
 static COLORREF ANSIColor[256];
-static int Dx[256];
+static int Dx[TermWidthMax];
 
 // caret variables
 static int CaretStatus;
@@ -1956,7 +1956,7 @@
 
   SetLogFont();
 
-  for (i = 0 ; i <= 255; i++)
+  for (i = 0 ; i < TermWidthMax; i++)
     Dx[i] = FontWidth;
 }
 



Ttssh2-commit メーリングリストの案内
アーカイブの一覧に戻る