comparison src/edit.c @ 32009:4545f58c8490 v9.0.1336

patch 9.0.1336: functions without arguments are not always declared properly Commit: https://github.com/vim/vim/commit/a23a11b5bf03454b71fdb5deac0d5f641e222160 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Feb 21 14:27:41 2023 +0000 patch 9.0.1336: functions without arguments are not always declared properly Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/12031)
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Feb 2023 15:30:08 +0100
parents b89cfd86e18e
children e9b8deedab60
comparison
equal deleted inserted replaced
32008:6b51ad8c5e8e 32009:4545f58c8490
4605 4605
4606 start_arrow(&tpos); 4606 start_arrow(&tpos);
4607 } 4607 }
4608 4608
4609 static void 4609 static void
4610 ins_s_left() 4610 ins_s_left(void)
4611 { 4611 {
4612 int end_change = dont_sync_undo == FALSE; // end undoable change 4612 int end_change = dont_sync_undo == FALSE; // end undoable change
4613 #ifdef FEAT_FOLDING 4613 #ifdef FEAT_FOLDING
4614 if ((fdo_flags & FDO_HOR) && KeyTyped) 4614 if ((fdo_flags & FDO_HOR) && KeyTyped)
4615 foldOpenCursor(); 4615 foldOpenCursor();
4674 vim_beep(BO_CRSR); 4674 vim_beep(BO_CRSR);
4675 dont_sync_undo = FALSE; 4675 dont_sync_undo = FALSE;
4676 } 4676 }
4677 4677
4678 static void 4678 static void
4679 ins_s_right() 4679 ins_s_right(void)
4680 { 4680 {
4681 int end_change = dont_sync_undo == FALSE; // end undoable change 4681 int end_change = dont_sync_undo == FALSE; // end undoable change
4682 #ifdef FEAT_FOLDING 4682 #ifdef FEAT_FOLDING
4683 if ((fdo_flags & FDO_HOR) && KeyTyped) 4683 if ((fdo_flags & FDO_HOR) && KeyTyped)
4684 foldOpenCursor(); 4684 foldOpenCursor();