From: Michael Albinus Date: Mon, 10 Sep 2018 11:17:29 +0000 (+0200) Subject: * src/window.c (run_window_size_change_functions): Fix typo. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61be02000e9cb86de239415104de429121a47fc4;p=emacs.git * src/window.c (run_window_size_change_functions): Fix typo. --- diff --git a/src/window.c b/src/window.c index b81469b9d69..c0974d49473 100644 --- a/src/window.c +++ b/src/window.c @@ -3470,8 +3470,8 @@ run_window_size_change_functions (Lisp_Object frame) with FRAME as its argument and as such oblivious to the window checked below. */ if (window_size_changed (XWINDOW (window)) - && !Fmemq (buffer, buffers) - && Flocal_variable_p (Qwindow_size_change_functions, buffer)) + && NILP (Fmemq (buffer, buffers)) + && !NILP (Flocal_variable_p (Qwindow_size_change_functions, buffer))) { Lisp_Object locals = Fbuffer_local_value (Qwindow_size_change_functions, buffer);