[Ttssh2-commit] [4418] マウス位置が 224 行目以降だった場合に、xterm 形式のマウスレポートで不正な報告をするのを修正。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 4月 8日 (金) 10:55:35 JST


Revision: 4418
          http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4418
Author:   doda
Date:     2011-04-08 10:55:35 +0900 (Fri, 08 Apr 2011)

Log Message:
-----------
マウス位置が 224 行目以降だった場合に、xterm 形式のマウスレポートで不正な報告をするのを修正。
# 端末の縦サイズを 224 行以上で使う事はまず無いだろうから、実際に問題になった事はおそらく無いだろうけれど。
## フォントをかなり小さめにして、WUXGA のモニタを使えば出ない事はないか
## http://www-06.ibm.com/systems/jp/x/monitor/t221/ を使えば普通に出る?

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


-------------- next part --------------
Modified: trunk/doc/en/html/about/history.html
===================================================================
--- trunk/doc/en/html/about/history.html	2011-04-08 01:11:09 UTC (rev 4417)
+++ trunk/doc/en/html/about/history.html	2011-04-08 01:55:35 UTC (rev 4418)
@@ -51,7 +51,8 @@
   <li>Bug fixes
     <ul>
       <li>When a last one byte of a string is removed by using the strremove macro command, the BOF will be ocurred. cf. <a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24631">Ticket#24631</a></li>
-      <li>YMODEM: When a file is sent, the block1 can be sent not waiting the ACK from the YMODEM server. cf.<a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24286">Sending with Y-Modem fails with u-boot (intermittent)</a></li>
+      <li>YMODEM: When a file is sent, the block1 can be sent not waiting the ACK from the YMODEM server. cf. <a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24286">Sending with Y-Modem fails with u-boot (intermittent)</a></li>
+      <!-- li>xterm Œ`Ž®‚̃}ƒEƒXƒCƒxƒ“ƒg’Ê’m‚ŁAƒ}ƒEƒXƒ|ƒCƒ“ƒ^‚̈ʒu‚ª224s–ڈȍ~‚¾‚Á‚½ê‡‚É•s³‚È•ñ‚ð‚·‚é–â‘è‚ðC³‚µ‚½B</li -->
     </ul>
   </li>
 

Modified: trunk/doc/ja/html/about/history.html
===================================================================
--- trunk/doc/ja/html/about/history.html	2011-04-08 01:11:09 UTC (rev 4417)
+++ trunk/doc/ja/html/about/history.html	2011-04-08 01:55:35 UTC (rev 4418)
@@ -51,7 +51,8 @@
   <li>ƒoƒOC³
     <ul>
       <li>strremove ƒ}ƒNƒ‚É‚¨‚¢‚āA•¶Žš—ñ‚Ì––”ö1ƒoƒCƒg‚̍폜Žž‚ÉBOF‚ª”­¶‚µ‚Ä‚¢‚½–â‘è‚ðC³‚µ‚½B cf. <a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24631">Ticket#24631</a></li>
-      <li>YMODEM: ƒtƒ@ƒCƒ‹‘—M‚É‚¨‚¢‚āAACK‚ð‘Ò‚½‚¸‚Æ‚àAƒuƒƒbƒN1‚𑗐M‚µ‚Ä‚µ‚Ü‚¤ƒoƒO‚ðC³‚µ‚½B cf.<a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24286">Sending with Y-Modem fails with u-boot (intermittent)</a></li>
+      <li>YMODEM: ƒtƒ@ƒCƒ‹‘—M‚É‚¨‚¢‚āAACK‚ð‘Ò‚½‚¸‚Æ‚àAƒuƒƒbƒN1‚𑗐M‚µ‚Ä‚µ‚Ü‚¤–â‘è‚ðC³‚µ‚½B cf. <a href="http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=24286">Sending with Y-Modem fails with u-boot (intermittent)</a></li>
+      <li>xterm Œ`Ž®‚̃}ƒEƒXƒCƒxƒ“ƒg’Ê’m‚ŁAƒ}ƒEƒXƒ|ƒCƒ“ƒ^‚̈ʒu‚ª224s–ڈȍ~‚¾‚Á‚½ê‡‚É•s³‚È•ñ‚ð‚·‚é–â‘è‚ðC³‚µ‚½B</li>
     </ul>
   </li>
 

Modified: trunk/teraterm/teraterm/vtterm.c
===================================================================
--- trunk/teraterm/teraterm/vtterm.c	2011-04-08 01:11:09 UTC (rev 4417)
+++ trunk/teraterm/teraterm/vtterm.c	2011-04-08 01:55:35 UTC (rev 4418)
@@ -4350,7 +4350,7 @@
 
   if (MouseReportMode != IdMouseTrackDECELR) {
     if (x > 0xff - 32) x = 0xff - 32;
-    if (x > 0xff - 32) y = 0xff - 32;
+    if (y > 0xff - 32) y = 0xff - 32;
   }
 
   if (ShiftKey())



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