aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2008-06-09 21:55:16 +0000
committerJason Rumney2008-06-09 21:55:16 +0000
commit593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6 (patch)
tree9793ba3013303d0dee970c61b4af2ef76ffb08e1 /src
parent4abe21a973ed11ed9f4ce282de8269769413c0db (diff)
downloademacs-593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6.tar.gz
emacs-593c843ca9bc9ef3f1151ed9f67f9c0d098e60c6.zip
(single_keymap_panes, push_menu_pane, push_menu_item): Make static again.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/menu.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f5495f59220..63dc2fbd007 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,10 @@
12008-06-09 Jason Rumney <jasonr@gnu.org> 12008-06-09 Jason Rumney <jasonr@gnu.org>
2 2
3 * w32menu.c (Fx_popup_menu): Unwind protect while building menu. 3 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
4 (parse_single_submenu): Remove.
5
6 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
7 Make static again.
4 8
52008-06-09 Jason Rumney <jasonr@gnu.org> 92008-06-09 Jason Rumney <jasonr@gnu.org>
6 10
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 ()
204/* Start a new menu pane in menu_items. 204/* Start a new menu pane in menu_items.
205 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */ 205 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
206 206
207void 207static void
208push_menu_pane (name, prefix_vec) 208push_menu_pane (name, prefix_vec)
209 Lisp_Object name, prefix_vec; 209 Lisp_Object name, prefix_vec;
210{ 210{
@@ -226,7 +226,7 @@ push_menu_pane (name, prefix_vec)
226 for this item (or nil if none). TYPE is the type of this menu 226 for this item (or nil if none). TYPE is the type of this menu
227 item, one of nil, `toggle' or `radio'. */ 227 item, one of nil, `toggle' or `radio'. */
228 228
229void 229static void
230push_menu_item (name, enable, key, def, equiv, type, selected, help) 230push_menu_item (name, enable, key, def, equiv, type, selected, help)
231 Lisp_Object name, enable, key, def, equiv, type, selected, help; 231 Lisp_Object name, enable, key, def, equiv, type, selected, help;
232{ 232{
@@ -263,7 +263,7 @@ static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
263 263
264 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */ 264 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
265 265
266void 266static void
267single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth) 267single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
268 Lisp_Object keymap; 268 Lisp_Object keymap;
269 Lisp_Object pane_name; 269 Lisp_Object pane_name;