comparison src/gui_gtk.c @ 7821:81794242a275 v7.4.1207

commit https://github.com/vim/vim/commit/66f948e928d5e0cd3123af902aa8ac1613534c94 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 30 16:39:25 2016 +0100 patch 7.4.1207 Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Jan 2016 16:45:04 +0100
parents 055a0b587a3e
children 3456e2ebebd4
comparison
equal deleted inserted replaced
7820:38d22ab3d9a0 7821:81794242a275
1986 1986
1987 /* 1987 /*
1988 * ":helpfind" 1988 * ":helpfind"
1989 */ 1989 */
1990 void 1990 void
1991 ex_helpfind(eap) 1991 ex_helpfind(exarg_T *eap UNUSED)
1992 exarg_T *eap UNUSED;
1993 { 1992 {
1994 /* This will fail when menus are not loaded. Well, it's only for 1993 /* This will fail when menus are not loaded. Well, it's only for
1995 * backwards compatibility anyway. */ 1994 * backwards compatibility anyway. */
1996 do_cmdline_cmd((char_u *)"emenu ToolBar.FindHelp"); 1995 do_cmdline_cmd((char_u *)"emenu ToolBar.FindHelp");
1997 } 1996 }