50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
To: vim-dev@vim.org
|
|
Subject: Patch 7.1.137
|
|
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.1.137
|
|
Problem: Build failure when using EXITFREE. (Dominique Pelle)
|
|
Solution: Add an #ifdef around using clip_exclude_prog.
|
|
Files: src/misc2.c
|
|
|
|
|
|
*** ../vim-7.1.136/src/misc2.c Sat Sep 29 14:15:00 2007
|
|
--- src/misc2.c Sun Sep 30 18:00:09 2007
|
|
***************
|
|
*** 1037,1043 ****
|
|
--- 1038,1046 ----
|
|
|
|
/* Free some global vars. */
|
|
vim_free(username);
|
|
+ # ifdef FEAT_CLIPBOARD
|
|
vim_free(clip_exclude_prog);
|
|
+ # endif
|
|
vim_free(last_cmdline);
|
|
vim_free(new_last_cmdline);
|
|
set_keep_msg(NULL, 0);
|
|
*** ../vim-7.1.136/src/version.c Sun Oct 7 15:21:31 2007
|
|
--- src/version.c Sun Oct 7 15:42:26 2007
|
|
***************
|
|
*** 668,669 ****
|
|
--- 668,671 ----
|
|
{ /* Add new patch number below this line */
|
|
+ /**/
|
|
+ 137,
|
|
/**/
|
|
|
|
--
|
|
For society, it's probably a good thing that engineers value function over
|
|
appearance. For example, you wouldn't want engineers to build nuclear power
|
|
plants that only _look_ like they would keep all the radiation inside.
|
|
(Scott Adams - The Dilbert principle)
|
|
|
|
/// 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 ///
|