diff src/xmenu.c @ 109374:88a5b905a895

Convert function definitions to standard C. * src/xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose) (_scroll_bar_note_movement): Convert definitions to standard C. * src/xmenu.c (menu_help_callback, pop_down_menu, xmenu_show): * src/xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 12 Jul 2010 12:56:46 -0700
parents dd04c65fb401
children a4e57fa6eb3f
line wrap: on
line diff
--- a/src/xmenu.c	Mon Jul 12 12:49:40 2010 -0700
+++ b/src/xmenu.c	Mon Jul 12 12:56:46 2010 -0700
@@ -2228,9 +2228,7 @@
    keyboard events.  */
 
 static void
-menu_help_callback (help_string, pane, item)
-     char *help_string;
-     int pane, item;
+menu_help_callback (char *help_string, int pane, int item)
 {
   extern Lisp_Object Qmenu_item;
   Lisp_Object *first_item;
@@ -2255,8 +2253,7 @@
 }
 
 static Lisp_Object
-pop_down_menu (arg)
-     Lisp_Object arg;
+pop_down_menu (Lisp_Object arg)
 {
   struct Lisp_Save_Value *p1 = XSAVE_VALUE (Fcar (arg));
   struct Lisp_Save_Value *p2 = XSAVE_VALUE (Fcdr (arg));
@@ -2291,14 +2288,7 @@
 
 
 Lisp_Object
-xmenu_show (f, x, y, for_click, keymaps, title, error, timestamp)
-     FRAME_PTR f;
-     int x, y;
-     int for_click;
-     int keymaps;
-     Lisp_Object title;
-     char **error;
-     EMACS_UINT timestamp;
+xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, unsigned int timestamp)
 {
   Window root;
   XMenu *menu;