aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2006-11-10 07:54:22 +0000
committerJan Djärv2006-11-10 07:54:22 +0000
commitd761dd42361f65e10ce6b84696c2435c5a5a3d49 (patch)
tree0a38f335a24dec786c92b3b974fbe214ec2a68e9 /src
parent3d644e946e3afb94a5d2470466ee01ad90d32047 (diff)
downloademacs-d761dd42361f65e10ce6b84696c2435c5a5a3d49.tar.gz
emacs-d761dd42361f65e10ce6b84696c2435c5a5a3d49.zip
(x_set_fullscreen): Call fullscreen_hook if set.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c
index 836516d29cf..75992824fd3 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -3034,6 +3034,9 @@ x_set_fullscreen (f, new_value, old_value)
3034 f->want_fullscreen = FULLSCREEN_WIDTH; 3034 f->want_fullscreen = FULLSCREEN_WIDTH;
3035 else if (EQ (new_value, Qfullheight)) 3035 else if (EQ (new_value, Qfullheight))
3036 f->want_fullscreen = FULLSCREEN_HEIGHT; 3036 f->want_fullscreen = FULLSCREEN_HEIGHT;
3037
3038 if (fullscreen_hook != NULL)
3039 fullscreen_hook (f);
3037} 3040}
3038 3041
3039 3042