diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/window.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3d660159a1a..5c297eb1e33 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | * window.c (inhibit_window_configuration_change_hook): New var. | 7 | * window.c (inhibit_window_configuration_change_hook): New var. |
| 8 | (run_window_configuration_change_hook): Obey it. | 8 | (run_window_configuration_change_hook): Obey it. |
| 9 | (syms_of_window): Initialize it. | ||
| 9 | 10 | ||
| 10 | 2012-02-22 Chong Yidong <cyd@gnu.org> | 11 | 2012-02-22 Chong Yidong <cyd@gnu.org> |
| 11 | 12 | ||
diff --git a/src/window.c b/src/window.c index 397d84a8b05..be40e53f6b9 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -6527,6 +6527,8 @@ syms_of_window (void) | |||
| 6527 | window_scroll_preserve_hpos = -1; | 6527 | window_scroll_preserve_hpos = -1; |
| 6528 | window_scroll_preserve_vpos = -1; | 6528 | window_scroll_preserve_vpos = -1; |
| 6529 | 6529 | ||
| 6530 | inhibit_window_configuration_change_hook = Qnil; | ||
| 6531 | |||
| 6530 | DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function, | 6532 | DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function, |
| 6531 | doc: /* Non-nil means call as function to display a help buffer. | 6533 | doc: /* Non-nil means call as function to display a help buffer. |
| 6532 | The function is called with one argument, the buffer to be displayed. | 6534 | The function is called with one argument, the buffer to be displayed. |