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.1050 < prev    next >
Encoding:
Internet Message Format  |  2013-05-28  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1050
  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.1050
  11. Problem:    Python: Typo in pyiter_to_tv.
  12. Solution:   Python patch 11. (ZyX)
  13. Files:        src/if_py_both.h
  14.  
  15.  
  16. *** ../vim-7.3.1049/src/if_py_both.h    2013-05-29 22:43:32.000000000 +0200
  17. --- src/if_py_both.h    2013-05-29 22:45:42.000000000 +0200
  18. ***************
  19. *** 4196,4202 ****
  20.       if (iterator == NULL)
  21.       return -1;
  22.   
  23. !     while ((item = PyIter_Next(obj)))
  24.       {
  25.       li = listitem_alloc();
  26.       if (li == NULL)
  27. --- 4196,4202 ----
  28.       if (iterator == NULL)
  29.       return -1;
  30.   
  31. !     while ((item = PyIter_Next(iterator)))
  32.       {
  33.       li = listitem_alloc();
  34.       if (li == NULL)
  35. *** ../vim-7.3.1049/src/version.c    2013-05-29 22:43:32.000000000 +0200
  36. --- src/version.c    2013-05-29 22:45:58.000000000 +0200
  37. ***************
  38. *** 730,731 ****
  39. --- 730,733 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     1050,
  43.   /**/
  44.  
  45. -- 
  46. Computers are useless. They can only give you answers.
  47.                 -- Pablo Picasso
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.