diff src/edit.c @ 9282:9f97a6290c63 v7.4.1924

commit https://github.com/vim/vim/commit/cf089463492fab53b2a5d81517829d22f882f82e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 12 21:18:43 2016 +0200 patch 7.4.1924 Problem: Missing "void" for functions without argument. Solution: Add "void". (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Jun 2016 21:30:05 +0200
parents a3060addc328
children 35b173e37dc6
line wrap: on
line diff
--- a/src/edit.c
+++ b/src/edit.c
@@ -2770,7 +2770,7 @@ ins_compl_make_cyclic(void)
  * 'completeopt' value.
  */
     void
-completeopt_was_set()
+completeopt_was_set(void)
 {
     compl_no_insert = FALSE;
     compl_no_select = FALSE;