diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-06 14:34:54 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-06 14:34:54 -0800 |
commit | 032f16205d3fc06ecafa26382745b49985dd124b (patch) | |
tree | 8b08c9618952283c03cad2f4b42bd0b79b717161 /src/xmenu.c | |
parent | 44a3a108430ef79370ad2957a5d71d4cd040962b (diff) | |
download | emacs-032f16205d3fc06ecafa26382745b49985dd124b.tar.gz |
* xmenu.c (menu_highlight_callback): Now static.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r-- | src/xmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 934db0f0406..750dad6da17 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -723,7 +723,7 @@ show_help_event (FRAME_PTR f, xt_or_gtk_widget widget, Lisp_Object help) unhighlighting. */ #ifdef USE_GTK -void +static void menu_highlight_callback (GtkWidget *widget, gpointer call_data) { xg_menu_item_cb_data *cb_data; @@ -742,7 +742,7 @@ menu_highlight_callback (GtkWidget *widget, gpointer call_data) show_help_event (cb_data->cl_data->f, widget, help); } #else -void +static void menu_highlight_callback (Widget widget, LWLIB_ID id, void *call_data) { struct frame *f; |