1
0
forked from aniani/vim

patch 7.4.1924

Problem:    Missing "void" for functions without argument.
Solution:   Add "void". (Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-06-12 21:18:43 +02:00
parent ae3150ec8d
commit cf08946349
6 changed files with 13 additions and 11 deletions

View File

@@ -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)