aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Rudalics2018-09-10 14:07:05 +0200
committerMartin Rudalics2018-09-10 14:07:05 +0200
commit80a35ff2774b297baf0f12f02e1d8b521de640d5 (patch)
treef16106ef3e689d7c31101816ee148d1f0eb54957 /src
parent6a00f2babf84f309fa00269bff3abef7eb502023 (diff)
downloademacs-80a35ff2774b297baf0f12f02e1d8b521de640d5.tar.gz
emacs-80a35ff2774b297baf0f12f02e1d8b521de640d5.zip
Fix last change of 'run_window_size_change_functions'
* src/window.c (run_window_size_change_functions): Fix two type mixups in last change. Reported by Michael Albinus <michael.albinus@gmx.de> on emacs-devel.
Diffstat (limited to 'src')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index b81469b9d69..6cdc52f90e6 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3470,8 +3470,8 @@ run_window_size_change_functions (Lisp_Object frame)
3470 with FRAME as its argument and as such oblivious to the 3470 with FRAME as its argument and as such oblivious to the
3471 window checked below. */ 3471 window checked below. */
3472 if (window_size_changed (XWINDOW (window)) 3472 if (window_size_changed (XWINDOW (window))
3473 && !Fmemq (buffer, buffers) 3473 && !NILP (Flocal_variable_p (Qwindow_size_change_functions, buffer))
3474 && Flocal_variable_p (Qwindow_size_change_functions, buffer)) 3474 && NILP (Fmemq (buffer, buffers)))
3475 { 3475 {
3476 Lisp_Object locals 3476 Lisp_Object locals
3477 = Fbuffer_local_value (Qwindow_size_change_functions, buffer); 3477 = Fbuffer_local_value (Qwindow_size_change_functions, buffer);