Mercurial > emacs
diff src/menu.c @ 95726:ce4bece7ab52
(single_keymap_panes, push_menu_pane, push_menu_item): Make static again.
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Mon, 09 Jun 2008 21:54:53 +0000 |
| parents | 51e7d268aef8 |
| children | 127e54f8220e |
line wrap: on
line diff
--- a/src/menu.c Mon Jun 09 21:54:36 2008 +0000 +++ b/src/menu.c Mon Jun 09 21:54:53 2008 +0000 @@ -204,7 +204,7 @@ /* Start a new menu pane in menu_items. NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */ -void +static void push_menu_pane (name, prefix_vec) Lisp_Object name, prefix_vec; { @@ -226,7 +226,7 @@ for this item (or nil if none). TYPE is the type of this menu item, one of nil, `toggle' or `radio'. */ -void +static void push_menu_item (name, enable, key, def, equiv, type, selected, help) Lisp_Object name, enable, key, def, equiv, type, selected, help; { @@ -263,7 +263,7 @@ If we encounter submenus deeper than MAXDEPTH levels, ignore them. */ -void +static void single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth) Lisp_Object keymap; Lisp_Object pane_name;
