aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-05-03 17:26:43 -0700
committerPaul Eggert2011-05-03 17:26:43 -0700
commit13c15c6d700e63469a20679651649bd523f9de02 (patch)
treed9b49afb103315016e122295dab5c5cbba6714e2 /src
parent59dba0f4d83541ca638492d137db7723d47faa1e (diff)
parentc2f51e23ab57da738bf3d7e1411a28dcfd9da75c (diff)
downloademacs-13c15c6d700e63469a20679651649bd523f9de02.tar.gz
emacs-13c15c6d700e63469a20679651649bd523f9de02.zip
Merge from mainline.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/xterm.c5
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0bcad1118b6..c1f43f4313d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,4 +1,4 @@
12011-05-03 Paul Eggert <eggert@cs.ucla.edu> 12011-05-04 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Arithmetic overflows now return float rather than wrapping around. 3 Arithmetic overflows now return float rather than wrapping around.
4 (Bug#8611). 4 (Bug#8611).
@@ -108,6 +108,11 @@
108 108
109 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long. 109 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
110 110
1112011-05-03 Jan Djärv <jan.h.d@swipnet.se>
112
113 * xterm.c (x_set_frame_alpha): Do not set property on anything
114 else than FRAME_X_OUTER_WINDOW (Bug#8608).
115
1112011-05-02 Juanma Barranquero <lekktu@gmail.com> 1162011-05-02 Juanma Barranquero <lekktu@gmail.com>
112 117
113 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596) 118 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
diff --git a/src/xterm.c b/src/xterm.c
index 491a8b3698f..20259b7ab2e 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -454,11 +454,6 @@ x_set_frame_alpha (struct frame *f)
454 double alpha_min = 1.0; 454 double alpha_min = 1.0;
455 unsigned long opac; 455 unsigned long opac;
456 456
457 if (FRAME_X_DISPLAY_INFO (f)->root_window != FRAME_X_OUTPUT (f)->parent_desc)
458 /* Since the WM decoration lies under the FRAME_OUTER_WINDOW,
459 we must treat the former instead of the latter. */
460 win = FRAME_X_OUTPUT (f)->parent_desc;
461
462 if (dpyinfo->x_highlight_frame == f) 457 if (dpyinfo->x_highlight_frame == f)
463 alpha = f->alpha[0]; 458 alpha = f->alpha[0];
464 else 459 else