|
Karsten Hopp |
52c15c |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
52c15c |
Subject: Patch 7.3.1074
|
|
Karsten Hopp |
52c15c |
Fcc: outbox
|
|
Karsten Hopp |
52c15c |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
52c15c |
Mime-Version: 1.0
|
|
Karsten Hopp |
52c15c |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
52c15c |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
52c15c |
------------
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
Patch 7.3.1074
|
|
Karsten Hopp |
52c15c |
Problem: Compiler warning for printf format. (Manuel Ortega)
|
|
Karsten Hopp |
52c15c |
Solution: Add type casts.
|
|
Karsten Hopp |
52c15c |
Files: src/if_py_both.h
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
*** ../vim-7.3.1073/src/if_py_both.h 2013-05-30 15:38:20.000000000 +0200
|
|
Karsten Hopp |
52c15c |
--- src/if_py_both.h 2013-05-30 18:58:57.000000000 +0200
|
|
Karsten Hopp |
52c15c |
***************
|
|
Karsten Hopp |
52c15c |
*** 3807,3813 ****
|
|
Karsten Hopp |
52c15c |
name = "";
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
return PyString_FromFormat("<range %s (%d:%d)>",
|
|
Karsten Hopp |
52c15c |
! name, self->start, self->end);
|
|
Karsten Hopp |
52c15c |
}
|
|
Karsten Hopp |
52c15c |
}
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
--- 3807,3813 ----
|
|
Karsten Hopp |
52c15c |
name = "";
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
return PyString_FromFormat("<range %s (%d:%d)>",
|
|
Karsten Hopp |
52c15c |
! name, (int)self->start, (int)self->end);
|
|
Karsten Hopp |
52c15c |
}
|
|
Karsten Hopp |
52c15c |
}
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
*** ../vim-7.3.1073/src/version.c 2013-05-30 18:45:20.000000000 +0200
|
|
Karsten Hopp |
52c15c |
--- src/version.c 2013-05-30 18:59:37.000000000 +0200
|
|
Karsten Hopp |
52c15c |
***************
|
|
Karsten Hopp |
52c15c |
*** 730,731 ****
|
|
Karsten Hopp |
52c15c |
--- 730,733 ----
|
|
Karsten Hopp |
52c15c |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
52c15c |
+ /**/
|
|
Karsten Hopp |
52c15c |
+ 1074,
|
|
Karsten Hopp |
52c15c |
/**/
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
--
|
|
Karsten Hopp |
52c15c |
In many of the more relaxed civilizations on the Outer Eastern Rim of the
|
|
Karsten Hopp |
52c15c |
Galaxy, "The Hitchhiker's Guide to the Galaxy" has already supplanted the
|
|
Karsten Hopp |
52c15c |
great "Encyclopedia Galactica" as the standard repository of all knowledge
|
|
Karsten Hopp |
52c15c |
and wisdom, for though it has many omissions and contains much that is
|
|
Karsten Hopp |
52c15c |
apocryphal, or at least wildly inaccurate, it scores over the older, more
|
|
Karsten Hopp |
52c15c |
pedestrian work in two important respects.
|
|
Karsten Hopp |
52c15c |
First, it is slightly cheaper; and second, it has the words "DON'T PANIC"
|
|
Karsten Hopp |
52c15c |
inscribed in large friendly letters on its cover.
|
|
Karsten Hopp |
52c15c |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
52c15c |
|
|
Karsten Hopp |
52c15c |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
52c15c |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
52c15c |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
52c15c |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|