|
Karsten Hopp |
31b7c8 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
31b7c8 |
Subject: Patch 7.3.1075
|
|
Karsten Hopp |
31b7c8 |
Fcc: outbox
|
|
Karsten Hopp |
31b7c8 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
31b7c8 |
Mime-Version: 1.0
|
|
Karsten Hopp |
31b7c8 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
31b7c8 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
31b7c8 |
------------
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
Patch 7.3.1075
|
|
Karsten Hopp |
31b7c8 |
Problem: Compiler warning for storing a long_u in an int.
|
|
Karsten Hopp |
31b7c8 |
Solution: Declare the number as an int. (Mike Williams)
|
|
Karsten Hopp |
31b7c8 |
Files: src/regexp_nfa.c
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
*** ../vim-7.3.1074/src/regexp_nfa.c 2013-05-30 18:45:20.000000000 +0200
|
|
Karsten Hopp |
31b7c8 |
--- src/regexp_nfa.c 2013-05-30 19:15:50.000000000 +0200
|
|
Karsten Hopp |
31b7c8 |
***************
|
|
Karsten Hopp |
31b7c8 |
*** 890,896 ****
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
default:
|
|
Karsten Hopp |
31b7c8 |
{
|
|
Karsten Hopp |
31b7c8 |
! long_u n = 0;
|
|
Karsten Hopp |
31b7c8 |
int cmp = c;
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
if (c == '<' || c == '>')
|
|
Karsten Hopp |
31b7c8 |
--- 890,896 ----
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
default:
|
|
Karsten Hopp |
31b7c8 |
{
|
|
Karsten Hopp |
31b7c8 |
! int n = 0;
|
|
Karsten Hopp |
31b7c8 |
int cmp = c;
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
if (c == '<' || c == '>')
|
|
Karsten Hopp |
31b7c8 |
*** ../vim-7.3.1074/src/version.c 2013-05-30 19:01:20.000000000 +0200
|
|
Karsten Hopp |
31b7c8 |
--- src/version.c 2013-05-30 19:16:36.000000000 +0200
|
|
Karsten Hopp |
31b7c8 |
***************
|
|
Karsten Hopp |
31b7c8 |
*** 730,731 ****
|
|
Karsten Hopp |
31b7c8 |
--- 730,733 ----
|
|
Karsten Hopp |
31b7c8 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
31b7c8 |
+ /**/
|
|
Karsten Hopp |
31b7c8 |
+ 1075,
|
|
Karsten Hopp |
31b7c8 |
/**/
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
--
|
|
Karsten Hopp |
31b7c8 |
One difference between a man and a machine is that a machine is quiet
|
|
Karsten Hopp |
31b7c8 |
when well oiled.
|
|
Karsten Hopp |
31b7c8 |
|
|
Karsten Hopp |
31b7c8 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
31b7c8 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
31b7c8 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
31b7c8 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|