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.4 / 7.4.452 < prev    next >
Encoding:
Internet Message Format  |  2014-09-19  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.452
  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.4.452
  11. Problem:    Can't build with tiny features. (Tony Mechelynck)
  12. Solution:   Use "return" instead of "break".
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim-7.4.451/src/ex_cmds.c    2014-09-19 19:39:30.766446025 +0200
  17. --- src/ex_cmds.c    2014-09-19 22:03:13.506464860 +0200
  18. ***************
  19. *** 5900,5906 ****
  20.   }
  21.   
  22.   /*
  23. !  * ":helpclose": Close the help window
  24.    */
  25.       void
  26.   ex_helpclose(eap)
  27. --- 5900,5906 ----
  28.   }
  29.   
  30.   /*
  31. !  * ":helpclose": Close one help window
  32.    */
  33.       void
  34.   ex_helpclose(eap)
  35. ***************
  36. *** 5913,5919 ****
  37.       if (win->w_buffer->b_help)
  38.       {
  39.           win_close(win, FALSE);
  40. !         break;
  41.       }
  42.       }
  43.   }
  44. --- 5913,5919 ----
  45.       if (win->w_buffer->b_help)
  46.       {
  47.           win_close(win, FALSE);
  48. !         return;
  49.       }
  50.       }
  51.   }
  52. *** ../vim-7.4.451/src/version.c    2014-09-19 20:45:19.266454650 +0200
  53. --- src/version.c    2014-09-19 22:05:30.178465158 +0200
  54. ***************
  55. *** 743,744 ****
  56. --- 743,746 ----
  57.   {   /* Add new patch number below this line */
  58. + /**/
  59. +     452,
  60.   /**/
  61.  
  62. -- 
  63. hundred-and-one symptoms of being an internet addict:
  64. 168. You have your own domain name.
  65.  
  66.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  67. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  68. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  69.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  70.