]> git.pld-linux.org Git - packages/vim.git/commitdiff
- dropped, these are patches for -extra which we are not using
authorAdam Gołębiowski <adamg@pld-linux.org>
Sun, 27 Aug 2006 06:13:48 +0000 (06:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    7.0.057 -> 1.2
    7.0.065 -> 1.2

7.0.057 [deleted file]
7.0.065 [deleted file]

diff --git a/7.0.057 b/7.0.057
deleted file mode 100644 (file)
index 54ce72e..0000000
--- a/7.0.057
+++ /dev/null
@@ -1,74 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 7.0.057 (extra)
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-Mime-Version: 1.0
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 8bit
-------------
-
-Patch 7.0.057 (extra, after 7.0.45)
-Problem:    Win32: Compilation problem with Borland C 5.5.
-Solution:   Include vim.h as before. (Mark S. Williams)
-Files:     src/if_ole.cpp
-
-
-*** ../vim-7.0.056/src/if_ole.cpp      Tue Aug  8 17:06:21 2006
---- src/if_ole.cpp     Sun Aug 13 12:57:24 2006
-***************
-*** 13,26 ****
-   * See os_mswin.c for the client side.
-   */
-  
-  extern "C" {
-! #include "vim.h"
-  }
-  
-  #include <windows.h>
-  #include <oleauto.h>
-  
-  extern "C" {
-  extern HWND s_hwnd;
-  extern HWND vim_parent_hwnd;
-  }
---- 13,35 ----
-   * See os_mswin.c for the client side.
-   */
-  
-+ /*
-+  * We have some trouble with order of includes here.  For Borland it needs to
-+  * be different from MSVC...
-+  */
-+ #ifndef __BORLANDC__
-  extern "C" {
-! # include "vim.h"
-  }
-+ #endif
-  
-  #include <windows.h>
-  #include <oleauto.h>
-  
-  extern "C" {
-+ #ifdef __BORLANDC__
-+ # include "vim.h"
-+ #endif
-  extern HWND s_hwnd;
-  extern HWND vim_parent_hwnd;
-  }
-*** ../vim-7.0.056/src/version.c       Wed Aug 16 17:06:22 2006
---- src/version.c      Wed Aug 16 17:35:57 2006
-***************
-*** 668,669 ****
---- 668,671 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     57,
-  /**/
-
--- 
-Send $25.00 for handy leaflet on how to make money by selling leaflets
-
- /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
-///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
-\\\        download, build and distribute -- http://www.A-A-P.org        ///
- \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.0.065 b/7.0.065
deleted file mode 100644 (file)
index 56bf59f..0000000
--- a/7.0.065
+++ /dev/null
@@ -1,52 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 7.0.065 (extra)
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-Mime-Version: 1.0
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 8bit
-------------
-
-Patch 7.0.065 (extra)
-Problem:    Mac: left-right movement of the scrollwheel causes up-down
-           scrolling.
-Solution:   Ignore mouse wheel events that are not up-down. (Nicolas Weber)
-Files:     src/gui_mac.c
-
-
-*** ../vim-7.0.064/src/gui_mac.c       Wed May  3 00:03:26 2006
---- src/gui_mac.c      Tue Aug 22 13:41:12 2006
-***************
-*** 2480,2485 ****
---- 2480,2491 ----
-      UInt32   mod;
-      SInt32   delta;
-      int_u    vim_mod;
-+     EventMouseWheelAxis axis;
-+ 
-+     if (noErr == GetEventParameter(theEvent, kEventParamMouseWheelAxis,
-+                        typeMouseWheelAxis, NULL, sizeof(axis), NULL, &axis)
-+          && axis != kEventMouseWheelAxisY)
-+      goto bail; /* Vim only does up-down scrolling */
-  
-      if (noErr != GetEventParameter(theEvent, kEventParamMouseWheelDelta,
-                             typeSInt32, NULL, sizeof(SInt32), NULL, &delta))
-*** ../vim-7.0.064/src/version.c       Tue Aug 22 19:58:22 2006
---- src/version.c      Tue Aug 22 21:38:07 2006
-***************
-*** 668,669 ****
---- 668,671 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     65,
-  /**/
-
--- 
-Spam seems to be something useful to novices.  Later you realize that
-it's a bunch of indigestable junk that only clogs your system.
-Applies to both the food and the e-mail!
-
- /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
-///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
-\\\        download, build and distribute -- http://www.A-A-P.org        ///
- \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.038011 seconds and 4 git commands to generate.