|
Karsten Hopp |
c7acd7 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
c7acd7 |
Subject: Patch 7.4.649
|
|
Karsten Hopp |
c7acd7 |
Fcc: outbox
|
|
Karsten Hopp |
c7acd7 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
c7acd7 |
Mime-Version: 1.0
|
|
Karsten Hopp |
c7acd7 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
c7acd7 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
c7acd7 |
------------
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
Patch 7.4.649
|
|
Karsten Hopp |
c7acd7 |
Problem: Compiler complains about ignoring return value of fwrite().
|
|
Karsten Hopp |
c7acd7 |
(Michael Jarvis)
|
|
Karsten Hopp |
c7acd7 |
Solution: Add (void).
|
|
Karsten Hopp |
c7acd7 |
Files: src/misc2.c
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
*** ../vim-7.4.648/src/misc2.c 2015-02-27 17:19:07.104942344 +0100
|
|
Karsten Hopp |
c7acd7 |
--- src/misc2.c 2015-03-05 13:32:42.624093536 +0100
|
|
Karsten Hopp |
c7acd7 |
***************
|
|
Karsten Hopp |
c7acd7 |
*** 6286,6292 ****
|
|
Karsten Hopp |
c7acd7 |
char_u buf[8];
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
time_to_bytes(the_time, buf);
|
|
Karsten Hopp |
c7acd7 |
! fwrite(buf, (size_t)8, (size_t)1, fd);
|
|
Karsten Hopp |
c7acd7 |
}
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
/*
|
|
Karsten Hopp |
c7acd7 |
--- 6286,6292 ----
|
|
Karsten Hopp |
c7acd7 |
char_u buf[8];
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
time_to_bytes(the_time, buf);
|
|
Karsten Hopp |
c7acd7 |
! (void)fwrite(buf, (size_t)8, (size_t)1, fd);
|
|
Karsten Hopp |
c7acd7 |
}
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
/*
|
|
Karsten Hopp |
c7acd7 |
*** ../vim-7.4.648/src/version.c 2015-02-27 22:12:29.748834504 +0100
|
|
Karsten Hopp |
c7acd7 |
--- src/version.c 2015-03-05 13:35:27.262228967 +0100
|
|
Karsten Hopp |
c7acd7 |
***************
|
|
Karsten Hopp |
c7acd7 |
*** 743,744 ****
|
|
Karsten Hopp |
c7acd7 |
--- 743,746 ----
|
|
Karsten Hopp |
c7acd7 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
c7acd7 |
+ /**/
|
|
Karsten Hopp |
c7acd7 |
+ 649,
|
|
Karsten Hopp |
c7acd7 |
/**/
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
--
|
|
Karsten Hopp |
c7acd7 |
An extraordinary TALL KNIGHT in all black (possibly John with Mike on his
|
|
Karsten Hopp |
c7acd7 |
shoulders) walks out from the dark trees. He is extremely fierce and
|
|
Karsten Hopp |
c7acd7 |
gruesome countenance. He walks towards KING ARTHUR and PATSY, who are
|
|
Karsten Hopp |
c7acd7 |
wazzing like mad. (Salopian slang, meaning very scared. almost to the
|
|
Karsten Hopp |
c7acd7 |
point of wetting oneself, e.g. before an important football match or
|
|
Karsten Hopp |
c7acd7 |
prior to a postering. Salopian slang meaning a beating by the school
|
|
Karsten Hopp |
c7acd7 |
praeposters. Sorry about the Salopian slant to this stage direction - Ed.)
|
|
Karsten Hopp |
c7acd7 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
c7acd7 |
|
|
Karsten Hopp |
c7acd7 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
c7acd7 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
c7acd7 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
c7acd7 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|