aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorChong Yidong2008-11-12 15:51:11 +0000
committerChong Yidong2008-11-12 15:51:11 +0000
commit2f8e69cccae47fcf95e3b4157457456e4147f78a (patch)
tree78e841fa210304fc59da9d06b7a1afd8a2b7264e /src/xterm.c
parent7e849c1743c9abefcbe5d244544830cf93a19019 (diff)
downloademacs-2f8e69cccae47fcf95e3b4157457456e4147f78a.tar.gz
emacs-2f8e69cccae47fcf95e3b4157457456e4147f78a.zip
(x_set_frame_alpha): Do nothing if alpha is negative.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index eef22a51443..2a0f783580e 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -487,7 +487,9 @@ x_set_frame_alpha (f)
487 else if (INTEGERP (Vframe_alpha_lower_limit)) 487 else if (INTEGERP (Vframe_alpha_lower_limit))
488 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0; 488 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
489 489
490 if (alpha < 0.0 || 1.0 < alpha) 490 if (alpha < 0.0)
491 return;
492 else if (alpha > 1.0)
491 alpha = 1.0; 493 alpha = 1.0;
492 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0) 494 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
493 alpha = alpha_min; 495 alpha = alpha_min;