|
Karsten Hopp |
a6c2df |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
a6c2df |
Subject: Patch 7.4.867
|
|
Karsten Hopp |
a6c2df |
Fcc: outbox
|
|
Karsten Hopp |
a6c2df |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
a6c2df |
Mime-Version: 1.0
|
|
Karsten Hopp |
a6c2df |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
a6c2df |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
a6c2df |
------------
|
|
Karsten Hopp |
a6c2df |
|
|
Karsten Hopp |
a6c2df |
Patch 7.4.867 (after 7.4.866)
|
|
Karsten Hopp |
a6c2df |
Problem: Can't build on MS-Windows. (Taro Muraoka)
|
|
Karsten Hopp |
a6c2df |
Solution: Adjust #ifdef.
|
|
Karsten Hopp |
a6c2df |
Files: src/misc2.c
|
|
Karsten Hopp |
a6c2df |
|
|
Karsten Hopp |
a6c2df |
|
|
Karsten Hopp |
a6c2df |
*** ../vim-7.4.866/src/misc2.c 2015-09-15 14:12:01.382632522 +0200
|
|
Karsten Hopp |
a6c2df |
--- src/misc2.c 2015-09-15 15:55:19.589159669 +0200
|
|
Karsten Hopp |
a6c2df |
***************
|
|
Karsten Hopp |
a6c2df |
*** 6342,6348 ****
|
|
Karsten Hopp |
a6c2df |
/* Process the queued netbeans messages. */
|
|
Karsten Hopp |
a6c2df |
netbeans_parse_messages();
|
|
Karsten Hopp |
a6c2df |
# endif
|
|
Karsten Hopp |
a6c2df |
! # ifdef FEAT_CLIENTSERVER
|
|
Karsten Hopp |
a6c2df |
/* Process the queued clientserver messages. */
|
|
Karsten Hopp |
a6c2df |
server_parse_messages();
|
|
Karsten Hopp |
a6c2df |
# endif
|
|
Karsten Hopp |
a6c2df |
--- 6342,6348 ----
|
|
Karsten Hopp |
a6c2df |
/* Process the queued netbeans messages. */
|
|
Karsten Hopp |
a6c2df |
netbeans_parse_messages();
|
|
Karsten Hopp |
a6c2df |
# endif
|
|
Karsten Hopp |
a6c2df |
! # if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
|
|
Karsten Hopp |
a6c2df |
/* Process the queued clientserver messages. */
|
|
Karsten Hopp |
a6c2df |
server_parse_messages();
|
|
Karsten Hopp |
a6c2df |
# endif
|
|
Karsten Hopp |
a6c2df |
*** ../vim-7.4.866/src/version.c 2015-09-15 14:12:01.386632480 +0200
|
|
Karsten Hopp |
a6c2df |
--- src/version.c 2015-09-15 15:55:57.900761842 +0200
|
|
Karsten Hopp |
a6c2df |
***************
|
|
Karsten Hopp |
a6c2df |
*** 743,744 ****
|
|
Karsten Hopp |
a6c2df |
--- 743,746 ----
|
|
Karsten Hopp |
a6c2df |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
a6c2df |
+ /**/
|
|
Karsten Hopp |
a6c2df |
+ 867,
|
|
Karsten Hopp |
a6c2df |
/**/
|
|
Karsten Hopp |
a6c2df |
|
|
Karsten Hopp |
a6c2df |
--
|
|
Karsten Hopp |
a6c2df |
If you had to identify, in one word, the reason why the
|
|
Karsten Hopp |
a6c2df |
human race has not achieved, and never will achieve, its
|
|
Karsten Hopp |
a6c2df |
full potential, that word would be "meetings."
|
|
Karsten Hopp |
a6c2df |
|
|
Karsten Hopp |
a6c2df |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
a6c2df |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
a6c2df |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
a6c2df |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|