|
Karsten Hopp |
4a6888 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
4a6888 |
Subject: Patch 7.3.435
|
|
Karsten Hopp |
4a6888 |
Fcc: outbox
|
|
Karsten Hopp |
4a6888 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
4a6888 |
Mime-Version: 1.0
|
|
Karsten Hopp |
4a6888 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
4a6888 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
4a6888 |
------------
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
Patch 7.3.435
|
|
Karsten Hopp |
4a6888 |
Problem: Compiler warning for unused variable.
|
|
Karsten Hopp |
4a6888 |
Solution: Move the variable inside #ifdef.
|
|
Karsten Hopp |
4a6888 |
Files: src/ex_cmds2.c
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
*** ../vim-7.3.434/src/ex_cmds2.c 2012-02-05 23:10:25.000000000 +0100
|
|
Karsten Hopp |
4a6888 |
--- src/ex_cmds2.c 2012-02-06 06:16:28.000000000 +0100
|
|
Karsten Hopp |
4a6888 |
***************
|
|
Karsten Hopp |
4a6888 |
*** 3400,3406 ****
|
|
Karsten Hopp |
4a6888 |
{
|
|
Karsten Hopp |
4a6888 |
struct source_cookie *sp = (struct source_cookie *)cookie;
|
|
Karsten Hopp |
4a6888 |
char_u *line;
|
|
Karsten Hopp |
4a6888 |
! char_u *p, *s;
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
4a6888 |
/* If breakpoints have been added/deleted need to check for it. */
|
|
Karsten Hopp |
4a6888 |
--- 3400,3406 ----
|
|
Karsten Hopp |
4a6888 |
{
|
|
Karsten Hopp |
4a6888 |
struct source_cookie *sp = (struct source_cookie *)cookie;
|
|
Karsten Hopp |
4a6888 |
char_u *line;
|
|
Karsten Hopp |
4a6888 |
! char_u *p;
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
4a6888 |
/* If breakpoints have been added/deleted need to check for it. */
|
|
Karsten Hopp |
4a6888 |
***************
|
|
Karsten Hopp |
4a6888 |
*** 3471,3476 ****
|
|
Karsten Hopp |
4a6888 |
--- 3471,3478 ----
|
|
Karsten Hopp |
4a6888 |
#ifdef FEAT_MBYTE
|
|
Karsten Hopp |
4a6888 |
if (line != NULL && sp->conv.vc_type != CONV_NONE)
|
|
Karsten Hopp |
4a6888 |
{
|
|
Karsten Hopp |
4a6888 |
+ char_u *s;
|
|
Karsten Hopp |
4a6888 |
+
|
|
Karsten Hopp |
4a6888 |
/* Convert the encoding of the script line. */
|
|
Karsten Hopp |
4a6888 |
s = string_convert(&sp->conv, line, NULL);
|
|
Karsten Hopp |
4a6888 |
if (s != NULL)
|
|
Karsten Hopp |
4a6888 |
*** ../vim-7.3.434/src/version.c 2012-02-06 00:13:16.000000000 +0100
|
|
Karsten Hopp |
4a6888 |
--- src/version.c 2012-02-11 20:38:49.000000000 +0100
|
|
Karsten Hopp |
4a6888 |
***************
|
|
Karsten Hopp |
4a6888 |
*** 716,717 ****
|
|
Karsten Hopp |
4a6888 |
--- 716,719 ----
|
|
Karsten Hopp |
4a6888 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
4a6888 |
+ /**/
|
|
Karsten Hopp |
4a6888 |
+ 435,
|
|
Karsten Hopp |
4a6888 |
/**/
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
--
|
|
Karsten Hopp |
4a6888 |
Light travels faster than sound. This is why some people
|
|
Karsten Hopp |
4a6888 |
appear bright until you hear them speak
|
|
Karsten Hopp |
4a6888 |
|
|
Karsten Hopp |
4a6888 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
4a6888 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
4a6888 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
4a6888 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|