• R/O
  • SSH

vim: コミット

Mirror of the Vim source from https://github.com/vim/vim


コミットメタ情報

リビジョン31208ed42de95ba5738675cb78bd0f66c34ed785 (tree)
日時2006-08-23 04:36:17
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.0-065

変更サマリ

差分

diff -r fc0c566b9107 -r 31208ed42de9 src/gui_mac.c
--- a/src/gui_mac.c Tue Aug 22 17:55:55 2006 +0000
+++ b/src/gui_mac.c Tue Aug 22 19:36:17 2006 +0000
@@ -2480,6 +2480,12 @@
24802480 UInt32 mod;
24812481 SInt32 delta;
24822482 int_u vim_mod;
2483+ EventMouseWheelAxis axis;
2484+
2485+ if (noErr == GetEventParameter(theEvent, kEventParamMouseWheelAxis,
2486+ typeMouseWheelAxis, NULL, sizeof(axis), NULL, &axis)
2487+ && axis != kEventMouseWheelAxisY)
2488+ goto bail; /* Vim only does up-down scrolling */
24832489
24842490 if (noErr != GetEventParameter(theEvent, kEventParamMouseWheelDelta,
24852491 typeSInt32, NULL, sizeof(SInt32), NULL, &delta))
diff -r fc0c566b9107 -r 31208ed42de9 src/version.c
--- a/src/version.c Tue Aug 22 17:55:55 2006 +0000
+++ b/src/version.c Tue Aug 22 19:36:17 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 65,
671+/**/
670672 64,
671673 /**/
672674 63,
旧リポジトリブラウザで表示