aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2006-11-10 07:49:11 +0000
committerJan Djärv2006-11-10 07:49:11 +0000
commit9416ae448e61ef1478a7e7e07bdfa25273095811 (patch)
tree8636ea421a637959d548dee77fa3ab6b2746eaf4 /src
parent65a0c81b8438b2d150c31beb572156b49096cf38 (diff)
downloademacs-9416ae448e61ef1478a7e7e07bdfa25273095811.tar.gz
emacs-9416ae448e61ef1478a7e7e07bdfa25273095811.zip
Add fullscreen_hook.
Diffstat (limited to 'src')
-rw-r--r--src/termhooks.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index de43d580c9b..2b9e947996e 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -120,6 +120,11 @@ extern void (*frame_rehighlight_hook) P_ ((struct frame *));
120 windows. */ 120 windows. */
121extern void (*frame_raise_lower_hook) P_ ((struct frame *f, int raise)); 121extern void (*frame_raise_lower_hook) P_ ((struct frame *f, int raise));
122 122
123/* If the value of the frame parameter changed, whis hook is called.
124 For example, if going from fullscreen to not fullscreen this hook
125 may do something OS dependent, like extended window manager hints on X11. */
126extern void (*fullscreen_hook) P_ ((struct frame *f));
127
123 128
124/* Scroll bar hooks. */ 129/* Scroll bar hooks. */
125 130