home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.969 < prev    next >
Encoding:
Internet Message Format  |  2013-05-17  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.969
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.969
  11. Problem:    Can't built with Python 3 and without Python 2.
  12. Solution:   Adjust #ifdef. (Xavier de Gaye)
  13. Files:        src/window.c
  14.  
  15.  
  16. *** ../vim-7.3.968/src/window.c    2013-05-17 16:03:53.000000000 +0200
  17. --- src/window.c    2013-05-18 20:53:21.000000000 +0200
  18. ***************
  19. *** 4058,4064 ****
  20.   }
  21.   #endif
  22.   
  23. ! #if (defined(FEAT_WINDOWS) && defined(FEAT_PYTHON)) || defined(PROTO)
  24.   /*
  25.    * Find the tabpage for window "win".
  26.    */
  27. --- 4058,4065 ----
  28.   }
  29.   #endif
  30.   
  31. ! #if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
  32. !     || defined(PROTO)
  33.   /*
  34.    * Find the tabpage for window "win".
  35.    */
  36. *** ../vim-7.3.968/src/version.c    2013-05-18 20:45:51.000000000 +0200
  37. --- src/version.c    2013-05-18 20:54:16.000000000 +0200
  38. ***************
  39. *** 730,731 ****
  40. --- 730,733 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     969,
  44.   /**/
  45.  
  46. -- 
  47. ROBIN:  (warily) And if you get a question wrong?
  48. ARTHUR: You are cast into the Gorge of Eternal Peril.
  49. ROBIN:  Oh ... wacho!
  50.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  55.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  56.