]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/window.c (run_window_size_change_functions): Fix typo.
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 10 Sep 2018 11:17:29 +0000 (13:17 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 10 Sep 2018 11:17:29 +0000 (13:17 +0200)
src/window.c

index b81469b9d69b267303e019e4a4348c64c64eedef..c0974d494736766c30766a2e72d6b752698cffb8 100644 (file)
@@ -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);