|
Karsten Hopp |
524284 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
524284 |
Subject: Patch 7.4.607
|
|
Karsten Hopp |
524284 |
Fcc: outbox
|
|
Karsten Hopp |
524284 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
524284 |
Mime-Version: 1.0
|
|
Karsten Hopp |
524284 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
524284 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
524284 |
------------
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
Patch 7.4.607 (after 7.4.598)
|
|
Karsten Hopp |
524284 |
Problem: Compiler warnings for unused variables.
|
|
Karsten Hopp |
524284 |
Solution: Move them inside #ifdef. (Kazunobu Kuriyama)
|
|
Karsten Hopp |
524284 |
Files: src/ui.c
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
*** ../vim-7.4.606/src/ui.c 2015-01-27 14:09:29.625898193 +0100
|
|
Karsten Hopp |
524284 |
--- src/ui.c 2015-01-27 21:29:44.528861744 +0100
|
|
Karsten Hopp |
524284 |
***************
|
|
Karsten Hopp |
524284 |
*** 73,80 ****
|
|
Karsten Hopp |
524284 |
static char_u *ta_str = NULL;
|
|
Karsten Hopp |
524284 |
static int ta_off; /* offset for next char to use when ta_str != NULL */
|
|
Karsten Hopp |
524284 |
static int ta_len; /* length of ta_str when it's not NULL*/
|
|
Karsten Hopp |
524284 |
- static int clipboard_needs_update; /* clipboard needs to be updated */
|
|
Karsten Hopp |
524284 |
- static int global_change_count = 0; /* if set, inside a start_global_changes */
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
void
|
|
Karsten Hopp |
524284 |
ui_inchar_undo(s, len)
|
|
Karsten Hopp |
524284 |
--- 73,78 ----
|
|
Karsten Hopp |
524284 |
***************
|
|
Karsten Hopp |
524284 |
*** 564,569 ****
|
|
Karsten Hopp |
524284 |
--- 562,569 ----
|
|
Karsten Hopp |
524284 |
* prevents accessing the clipboard very often which might slow down Vim
|
|
Karsten Hopp |
524284 |
* considerably.
|
|
Karsten Hopp |
524284 |
*/
|
|
Karsten Hopp |
524284 |
+ static int global_change_count = 0; /* if set, inside a start_global_changes */
|
|
Karsten Hopp |
524284 |
+ static int clipboard_needs_update; /* clipboard needs to be updated */
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
/*
|
|
Karsten Hopp |
524284 |
* Save clip_unnamed and reset it.
|
|
Karsten Hopp |
524284 |
*** ../vim-7.4.606/src/version.c 2015-01-27 20:59:26.496971751 +0100
|
|
Karsten Hopp |
524284 |
--- src/version.c 2015-01-27 21:31:22.247780991 +0100
|
|
Karsten Hopp |
524284 |
***************
|
|
Karsten Hopp |
524284 |
*** 743,744 ****
|
|
Karsten Hopp |
524284 |
--- 743,746 ----
|
|
Karsten Hopp |
524284 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
524284 |
+ /**/
|
|
Karsten Hopp |
524284 |
+ 607,
|
|
Karsten Hopp |
524284 |
/**/
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
--
|
|
Karsten Hopp |
524284 |
Never eat yellow snow.
|
|
Karsten Hopp |
524284 |
|
|
Karsten Hopp |
524284 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
524284 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
524284 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
524284 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|