diff src/screen.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 bb86514cad15
children b6472fd9f5ba
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -416,7 +416,7 @@ redraw_asap(int type)
  * it belongs. If highlighting was changed a redraw is needed.
  */
     void
-redraw_after_callback()
+redraw_after_callback(void)
 {
     if (State == HITRETURN || State == ASKMORE)
 	; /* do nothing */
@@ -10252,7 +10252,7 @@ unshowmode(int force)
  * Clear the mode message.
  */
     void
-clearmode()
+clearmode(void)
 {
     msg_pos_mode();
     if (Recording)