annotate src/pre-crt0.c @ 9233:746cc6b0d28f
(widget_id_tick): Renamed from popup_id_tick.
(popup_get_selection, popup_activated, popup_activate_callback,
menubar_selection_callback, popup_deactivate_callback,
single_submenu): New or replaced functions.
(popup_activated_flag): New variable.
(dispatch_dummy_expose, event_is_in_menu_item, map_event_to_object):
Removed.
(update_frame_menubar): Use lw_refigure_widget to provide widget set
independence.
(set_frame_menubar): Use lw_allow_resizing to control unsightly Motif
menubar resizing in a widget set independent fashion.
(xmenu_show): Removed menubar handling code, since that is now done in
lwlib. Display a popup menu title centered and followed by two
separators. Use lw_popup_menu() to display the menu. Use
popup_get_selection() to deal with X11 event handling while the menu
is posted.
author |
Paul Reilly <pmr@pajato.com> |
date |
Sun, 02 Oct 1994 15:51:13 +0000 |
parents |
3165b2697c78 |
children |
695cf19ef79e |
rev |
line source |
484
|
1 /* This file is loaded before crt0.o on machines where we do not
|
|
2 remap part of the data space into text space in unexec.
|
|
3 On these machines, there is no problem with standard crt0.o's
|
|
4 that make environ an initialized variable. However, we do
|
|
5 need to make sure the label data_start exists anyway. */
|
|
6
|
|
7 /* Create a label to appear at the beginning of data space. */
|
|
8
|
|
9 int data_start = 0;
|