To: vim_dev@googlegroups.com Subject: Patch 9.0.0834 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0834 Problem: Warning for missing return type. Solution: Add "int". (San James, closes #11496) Files: src/configure.ac, src/auto/configure *** ../vim-9.0.0833/src/configure.ac 2022-10-08 19:26:35.698195391 +0100 --- src/configure.ac 2022-11-05 15:09:58.131268604 +0000 *************** *** 3654,3660 **** AC_MSG_CHECKING(for struct sigcontext) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #include ! test_sig() { struct sigcontext *scont; scont = (struct sigcontext *)0; --- 3654,3660 ---- AC_MSG_CHECKING(for struct sigcontext) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #include ! int test_sig() { struct sigcontext *scont; scont = (struct sigcontext *)0; *** ../vim-9.0.0833/src/auto/configure 2022-10-08 19:26:35.698195391 +0100 --- src/auto/configure 2022-11-05 15:10:28.187281548 +0000 *************** *** 12420,12426 **** /* end confdefs.h. */ #include ! test_sig() { struct sigcontext *scont; scont = (struct sigcontext *)0; --- 12420,12426 ---- /* end confdefs.h. */ #include ! int test_sig() { struct sigcontext *scont; scont = (struct sigcontext *)0; *** ../vim-9.0.0833/src/version.c 2022-11-05 14:23:09.229901363 +0000 --- src/version.c 2022-11-05 15:12:43.143339185 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 834, /**/ -- hundred-and-one symptoms of being an internet addict: 27. You refer to your age as 3.x. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///