|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.610
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.610
|
|
|
073263 |
Problem: Some function headers may be missing from generated .pro files.
|
|
|
073263 |
Solution: Add PROTO to the #ifdef.
|
|
|
073263 |
Files: src/option.c, src/syntax.c
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.609/src/option.c 2015-01-27 15:58:37.198395525 +0100
|
|
|
073263 |
--- src/option.c 2015-02-03 12:57:39.718500650 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 11212,11218 ****
|
|
|
073263 |
return FALSE;
|
|
|
073263 |
}
|
|
|
073263 |
|
|
|
073263 |
! #ifdef FEAT_LANGMAP
|
|
|
073263 |
/*
|
|
|
073263 |
* Any character has an equivalent 'langmap' character. This is used for
|
|
|
073263 |
* keyboards that have a special language mode that sends characters above
|
|
|
073263 |
--- 11212,11218 ----
|
|
|
073263 |
return FALSE;
|
|
|
073263 |
}
|
|
|
073263 |
|
|
|
073263 |
! #if defined(FEAT_LANGMAP) || defined(PROTO)
|
|
|
073263 |
/*
|
|
|
073263 |
* Any character has an equivalent 'langmap' character. This is used for
|
|
|
073263 |
* keyboards that have a special language mode that sends characters above
|
|
|
073263 |
***************
|
|
|
073263 |
*** 11226,11232 ****
|
|
|
073263 |
* langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
|
|
|
073263 |
* 256.
|
|
|
073263 |
*/
|
|
|
073263 |
! # ifdef FEAT_MBYTE
|
|
|
073263 |
/*
|
|
|
073263 |
* With multi-byte support use growarray for 'langmap' chars >= 256
|
|
|
073263 |
*/
|
|
|
073263 |
--- 11226,11232 ----
|
|
|
073263 |
* langmap_entry_T. This does the same as langmap_mapchar[] for characters >=
|
|
|
073263 |
* 256.
|
|
|
073263 |
*/
|
|
|
073263 |
! # if defined(FEAT_MBYTE) || defined(PROTO)
|
|
|
073263 |
/*
|
|
|
073263 |
* With multi-byte support use growarray for 'langmap' chars >= 256
|
|
|
073263 |
*/
|
|
|
073263 |
*** ../vim-7.4.609/src/syntax.c 2014-11-19 19:33:13.369532180 +0100
|
|
|
073263 |
--- src/syntax.c 2015-02-03 12:59:13.377443499 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 6537,6543 ****
|
|
|
073263 |
}
|
|
|
073263 |
#endif
|
|
|
073263 |
|
|
|
073263 |
! #ifdef FEAT_PROFILE
|
|
|
073263 |
/*
|
|
|
073263 |
* ":syntime".
|
|
|
073263 |
*/
|
|
|
073263 |
--- 6537,6543 ----
|
|
|
073263 |
}
|
|
|
073263 |
#endif
|
|
|
073263 |
|
|
|
073263 |
! #if defined(FEAT_PROFILE) || defined(PROTO)
|
|
|
073263 |
/*
|
|
|
073263 |
* ":syntime".
|
|
|
073263 |
*/
|
|
|
073263 |
*** ../vim-7.4.609/src/version.c 2015-02-03 12:55:11.140179551 +0100
|
|
|
073263 |
--- src/version.c 2015-02-03 12:58:24.829991354 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 743,744 ****
|
|
|
073263 |
--- 743,746 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 610,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
Microsoft says that MS-Windows is much better for you than Linux.
|
|
|
073263 |
That's like the Pope saying that catholicism is much better for
|
|
|
073263 |
you than protestantism.
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|