aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.c
diff options
context:
space:
mode:
authorJason Rumney2008-06-28 23:54:27 +0000
committerJason Rumney2008-06-28 23:54:27 +0000
commit8b61a891130e081faa91a897e17c4cc26efdfb41 (patch)
tree1b4e5d6394798a8ee63412eb9be75f724d8acd20 /src/frame.c
parenta7d545207891622ea4a90de96b994bf10d25ab3c (diff)
downloademacs-8b61a891130e081faa91a897e17c4cc26efdfb41.tar.gz
emacs-8b61a891130e081faa91a897e17c4cc26efdfb41.zip
* w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
(pfnSetLayeredWindowAttributes): New function pointer. (w32_initialize): Initialize it when supported. (x_set_frame_alpha): New function. * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'. (w32_frame_parm_handlers): Set alpha handler. * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 6320d0ca1ff..a7f22fad6a9 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -3692,7 +3692,7 @@ x_set_alpha (f, arg, oldval)
3692 for (i = 0; i < 2; i++) 3692 for (i = 0; i < 2; i++)
3693 f->alpha[i] = newval[i]; 3693 f->alpha[i] = newval[i];
3694 3694
3695#ifdef HAVE_X_WINDOWS 3695#if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
3696 BLOCK_INPUT; 3696 BLOCK_INPUT;
3697 x_set_frame_alpha (f); 3697 x_set_frame_alpha (f);
3698 UNBLOCK_INPUT; 3698 UNBLOCK_INPUT;