|
Karsten Hopp |
c24765 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
c24765 |
Subject: Patch 7.3.204
|
|
Karsten Hopp |
c24765 |
Fcc: outbox
|
|
Karsten Hopp |
c24765 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
c24765 |
Mime-Version: 1.0
|
|
Karsten Hopp |
c24765 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
c24765 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
c24765 |
------------
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
Patch 7.3.204 (after 7.3.201)
|
|
Karsten Hopp |
c24765 |
Problem: Compiler warning.
|
|
Karsten Hopp |
c24765 |
Solution: Add type cast. (Mike Williams)
|
|
Karsten Hopp |
c24765 |
Files: src/misc1.c
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
*** ../mercurial/vim73/src/misc1.c 2011-05-25 15:16:06.000000000 +0200
|
|
Karsten Hopp |
c24765 |
--- src/misc1.c 2011-05-25 17:25:10.000000000 +0200
|
|
Karsten Hopp |
c24765 |
***************
|
|
Karsten Hopp |
c24765 |
*** 7657,7663 ****
|
|
Karsten Hopp |
c24765 |
* not the one from "if () {". */
|
|
Karsten Hopp |
c24765 |
if (*l == '}')
|
|
Karsten Hopp |
c24765 |
curwin->w_cursor.col =
|
|
Karsten Hopp |
c24765 |
! (l - ml_get_curline()) + 1;
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
if ((trypos = find_start_brace(ind_maxcomment))
|
|
Karsten Hopp |
c24765 |
== NULL
|
|
Karsten Hopp |
c24765 |
--- 7657,7663 ----
|
|
Karsten Hopp |
c24765 |
* not the one from "if () {". */
|
|
Karsten Hopp |
c24765 |
if (*l == '}')
|
|
Karsten Hopp |
c24765 |
curwin->w_cursor.col =
|
|
Karsten Hopp |
c24765 |
! (colnr_T)(l - ml_get_curline()) + 1;
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
if ((trypos = find_start_brace(ind_maxcomment))
|
|
Karsten Hopp |
c24765 |
== NULL
|
|
Karsten Hopp |
c24765 |
*** ../vim-7.3.203/src/version.c 2011-05-25 17:06:16.000000000 +0200
|
|
Karsten Hopp |
c24765 |
--- src/version.c 2011-05-25 17:29:32.000000000 +0200
|
|
Karsten Hopp |
c24765 |
***************
|
|
Karsten Hopp |
c24765 |
*** 711,712 ****
|
|
Karsten Hopp |
c24765 |
--- 711,714 ----
|
|
Karsten Hopp |
c24765 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
c24765 |
+ /**/
|
|
Karsten Hopp |
c24765 |
+ 204,
|
|
Karsten Hopp |
c24765 |
/**/
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
--
|
|
Karsten Hopp |
c24765 |
In a world without walls and borders, who needs windows and gates?
|
|
Karsten Hopp |
c24765 |
|
|
Karsten Hopp |
c24765 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
c24765 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
c24765 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
c24765 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|