diff options
| author | Eli Zaretskii | 2017-11-04 12:00:03 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-11-04 12:00:03 +0200 |
| commit | ff3307454631dd9cd0494b4b8a3b4d034e281839 (patch) | |
| tree | 44a3a7e1becdd221641bfab4facbf89593c653a3 /src/window.c | |
| parent | 787b75ad71be76a6f4fac6e25577800112fe44b9 (diff) | |
| download | emacs-ff3307454631dd9cd0494b4b8a3b4d034e281839.tar.gz emacs-ff3307454631dd9cd0494b4b8a3b4d034e281839.zip | |
Fix doc string of 'window-configuration-change-hook'
* src/window.c (syms_of_window) <window-configuration-change-hook>:
Doc fix. (Bug#29049)
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index 9bb2c43a698..0b220226ba3 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -7617,8 +7617,8 @@ on their symbols to be controlled by this variable. */); | |||
| 7617 | DEFVAR_LISP ("window-configuration-change-hook", | 7617 | DEFVAR_LISP ("window-configuration-change-hook", |
| 7618 | Vwindow_configuration_change_hook, | 7618 | Vwindow_configuration_change_hook, |
| 7619 | doc: /* Functions to call when window configuration changes. | 7619 | doc: /* Functions to call when window configuration changes. |
| 7620 | The buffer-local part is run once per window, with the relevant window | 7620 | The buffer-local value is run once per window, with the relevant window |
| 7621 | selected; while the global part is run only once for the modified frame, | 7621 | selected; while the global value is run only once for the modified frame, |
| 7622 | with the relevant frame selected. */); | 7622 | with the relevant frame selected. */); |
| 7623 | Vwindow_configuration_change_hook = Qnil; | 7623 | Vwindow_configuration_change_hook = Qnil; |
| 7624 | 7624 | ||