aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2006-11-10 07:53:26 +0000
committerJan Djärv2006-11-10 07:53:26 +0000
commit3d644e946e3afb94a5d2470466ee01ad90d32047 (patch)
treec7780f38f5f133bd9132efca7d9453d186bddc32 /src
parent9416ae448e61ef1478a7e7e07bdfa25273095811 (diff)
downloademacs-3d644e946e3afb94a5d2470466ee01ad90d32047.tar.gz
emacs-3d644e946e3afb94a5d2470466ee01ad90d32047.zip
Define fullscreen_hook.
(syms_of_term): Initialize fullscreen_hook to NULL.
Diffstat (limited to 'src')
-rw-r--r--src/term.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index 603305c8f17..b39f86c4907 100644
--- a/src/term.c
+++ b/src/term.c
@@ -190,6 +190,11 @@ void (*frame_rehighlight_hook) P_ ((FRAME_PTR f));
190 190
191void (*frame_raise_lower_hook) P_ ((FRAME_PTR f, int raise)); 191void (*frame_raise_lower_hook) P_ ((FRAME_PTR f, int raise));
192 192
193/* If the value of the frame parameter changed, whis hook is called.
194 For example, if going from fullscreen to not fullscreen this hook
195 may do something OS dependent, like extended window manager hints on X11. */
196void (*fullscreen_hook) P_ ((struct frame *f));
197
193/* Set the vertical scroll bar for WINDOW to have its upper left corner 198/* Set the vertical scroll bar for WINDOW to have its upper left corner
194 at (TOP, LEFT), and be LENGTH rows high. Set its handle to 199 at (TOP, LEFT), and be LENGTH rows high. Set its handle to
195 indicate that we are displaying PORTION characters out of a total 200 indicate that we are displaying PORTION characters out of a total
@@ -2762,6 +2767,8 @@ bigger, or it may make it blink, or it may do nothing at all. */);
2762 defsubr (&Stty_display_color_p); 2767 defsubr (&Stty_display_color_p);
2763 defsubr (&Stty_display_color_cells); 2768 defsubr (&Stty_display_color_cells);
2764 defsubr (&Stty_no_underline); 2769 defsubr (&Stty_no_underline);
2770
2771 fullscreen_hook = NULL;
2765} 2772}
2766 2773
2767/* arch-tag: 498e7449-6f2e-45e2-91dd-b7d4ca488193 2774/* arch-tag: 498e7449-6f2e-45e2-91dd-b7d4ca488193