summaryrefslogtreecommitdiff
path: root/src/menu.c
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2008-06-09 21:55:16 +0000
committerJason Rumney <jasonr@gnu.org>2008-06-09 21:55:16 +0000
commit593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6 (patch)
tree9793ba3013303d0dee970c61b4af2ef76ffb08e1 /src/menu.c
parent4abe21a973ed11ed9f4ce282de8269769413c0db (diff)
downloademacs-593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6.tar.gz
emacs-593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6.tar.bz2
emacs-593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6.zip
(single_keymap_panes, push_menu_pane, push_menu_item): Make static again.
Diffstat (limited to 'src/menu.c')
-rw-r--r--src/menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu.c b/src/menu.c
index 7554f2a99c1..52c721891f7 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -204,7 +204,7 @@ push_left_right_boundary ()
/* 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 @@ push_menu_pane (name, prefix_vec)
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 @@ static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
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;