|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.619
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.618 (after 7.4.609)
|
|
|
3ef2ca |
Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi)
|
|
|
3ef2ca |
Solution: Put the return statement back.
|
|
|
3ef2ca |
Files: src/if_lua.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.617/src/if_lua.c 2015-02-03 12:55:11.136179596 +0100
|
|
|
3ef2ca |
--- src/if_lua.c 2015-02-03 23:07:59.892636921 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1547,1552 ****
|
|
|
3ef2ca |
--- 1547,1553 ----
|
|
|
3ef2ca |
abort = set_ref_in_item(&tv, copyID, NULL, NULL);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
lua_pushinteger(L, abort);
|
|
|
3ef2ca |
+ return 0;
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
static int
|
|
|
3ef2ca |
*** ../vim-7.4.617/src/version.c 2015-02-03 19:10:45.978888772 +0100
|
|
|
3ef2ca |
--- src/version.c 2015-02-03 23:09:15.267493945 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 743,744 ****
|
|
|
3ef2ca |
--- 743,746 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 618,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
174. You know what a listserv is.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|