aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-05-21 03:59:23 +0000
committerGlenn Morris2008-05-21 03:59:23 +0000
commit271a71c732275dc7b7eb58910c72a9a037f5827b (patch)
treea4cee0b73b431582d60a7965b84903154fc376d2 /src
parent50a73869685afb0e9c22237cee7b767a922e75fe (diff)
downloademacs-271a71c732275dc7b7eb58910c72a9a037f5827b.tar.gz
emacs-271a71c732275dc7b7eb58910c72a9a037f5827b.zip
Seiji Zenitani <zenitani at mac.com>
Ryo Yoshitake <ryo at shiftmode.net> (x-create-frame, Qalpha): Initialize the frame parameter `alpha'.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index e631dfd5548..e1dcee62bba 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3405,6 +3405,8 @@ This function is an internal primitive--use `make-frame' instead. */)
3405 x_default_parameter (f, parms, Qscroll_bar_width, Qnil, 3405 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3406 "scrollBarWidth", "ScrollBarWidth", 3406 "scrollBarWidth", "ScrollBarWidth",
3407 RES_TYPE_NUMBER); 3407 RES_TYPE_NUMBER);
3408 x_default_parameter (f, parms, Qalpha, Qnil,
3409 "alpha", "Alpha", RES_TYPE_NUMBER);
3408 3410
3409 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size. 3411 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3410 Change will not be effected unless different from the current 3412 Change will not be effected unless different from the current
@@ -5771,7 +5773,8 @@ frame_parm_handler x_frame_parm_handlers[] =
5771 x_set_fringe_width, 5773 x_set_fringe_width,
5772 x_set_wait_for_wm, 5774 x_set_wait_for_wm,
5773 x_set_fullscreen, 5775 x_set_fullscreen,
5774 x_set_font_backend 5776 x_set_font_backend,
5777 x_set_alpha
5775}; 5778};
5776 5779
5777void 5780void