aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2007-01-08 17:56:53 +0000
committerJan Djärv2007-01-08 17:56:53 +0000
commit287110f561c2644ffa2c131e2f5da1042ce31b2a (patch)
treecd06fd6e7d4b1b042710f1b88168c66d5f497b94
parent1c8591d04ca0c88d816e1498f058db7fe948fb63 (diff)
downloademacs-287110f561c2644ffa2c131e2f5da1042ce31b2a.tar.gz
emacs-287110f561c2644ffa2c131e2f5da1042ce31b2a.zip
(x_display_info): New: net_supported_atoms,
nr_net_supported_atoms and net_supported_window.
-rw-r--r--src/ChangeLog13
-rw-r--r--src/xterm.h5
2 files changed, 17 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 97c9d4cbeb9..79194a6016e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,16 @@
12007-01-08 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2
3 * xterm.h (x_display_info): New: net_supported_atoms,
4 nr_net_supported_atoms and net_supported_window.
5
6 * xterm.c: New variable last_user_time.
7 (handle_one_xevent): Set last_user_time from events that have Time.
8 Set net_supported_window to 0 when reparented.
9 (wm_supports): New function.
10 (do_ewmh_fullscreen): Use wm_supports to check for _NET_WM_STATE.
11 (x_term_init): Initialize net_supported_atoms, nr_net_supported_atoms
12 and net_supported_window.
13
12007-01-05 Kim F. Storm <storm@cua.dk> 142007-01-05 Kim F. Storm <storm@cua.dk>
2 15
3 * indent.c (Fvertical_motion): Fix it overshoot check for overlay 16 * indent.c (Fvertical_motion): Fix it overshoot check for overlay
diff --git a/src/xterm.h b/src/xterm.h
index af4225ae806..cf6c909a69e 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -396,7 +396,10 @@ struct x_display_info
396 size_t x_dnd_atoms_size; 396 size_t x_dnd_atoms_size;
397 size_t x_dnd_atoms_length; 397 size_t x_dnd_atoms_length;
398 398
399 int have_net_atoms; 399 /* Extended window manager hints, Atoms supported by the window manager */
400 Atom *net_supported_atoms;
401 int nr_net_supported_atoms;
402 Window net_supported_window;
400}; 403};
401 404
402#ifdef HAVE_X_I18N 405#ifdef HAVE_X_I18N