annotate src/pre-crt0.c @ 111512:4f757d8e8ed7
Apply XAtom revork patches from Julien Danjou.
* xsettings.c (init_xsettings): Use already fetch atoms.
* xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
from dpyinfo.
* xselect.c (Fx_send_client_event): Split and create
x_send_client_event.
* lisp.h: Do not EXFUN Fx_send_client_event.
* xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
from dpyinfo.
(wm_supports): Use atoms from dpyinfo.
(do_ewmh_fullscreen): Use atoms from dpyinfo.
(x_ewmh_activate_frame): Use atoms from dpyinfo.
(xembed_set_info): Use atoms from dpyinfo.
(x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
_NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
_NET_ACTIVE_WINDOW, XSETTINGS atoms.
Get all atoms in one round-trip.
(set_wm_state): Use x_send_client_event rather than
Fx_send_client_event, using Atom directly.
(x_ewmh_activate_frame): Ditto.
(x_set_sticky): Pass atoms to set_wm_state.
(do_ewmh_fullscreen): Ditto.
* xterm.h (x_display_info): Add Xatom_net_supported,
Xatom_net_supporting_wm_check, Xatom_net_active_window,
Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
* xfns.c (Fx_show_tip): Fix typo in docstring.
author |
Jan D. <jan.h.d@swipnet.se> |
date |
Fri, 12 Nov 2010 10:31:44 +0100 |
parents |
695cf19ef79e |
children |
375f2633d815 ef719132ddfa |
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;
|
52401
|
10
|
|
11 /* arch-tag: 2e260272-0790-495f-9362-55abd56b5c5a
|
|
12 (do not change this comment) */
|