]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a thinko in a recent commit
authorEli Zaretskii <eliz@gnu.org>
Sat, 30 Mar 2019 11:27:11 +0000 (14:27 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 30 Mar 2019 11:27:11 +0000 (14:27 +0300)
* src/buffer.c (Fkill_buffer): Fix last change.  (Bug#31138)
Reported by Mattias EngdegĂ„rd <mattiase@acm.org>.

src/buffer.c

index 8bdc30300ba9205774ca3cc7f45585dc5c6373ff..7c4691e52c075c5fac7cc01b7371fd144eea33d5 100644 (file)
@@ -1713,10 +1713,12 @@ cleaning up all windows currently displaying the buffer to be killed. */)
     /* First run the query functions; if any query is answered no,
        don't kill the buffer.  */
     if (!b->inhibit_buffer_hooks)
-      tem = CALLN (Frun_hook_with_args_until_failure,
-                  Qkill_buffer_query_functions);
-    if (NILP (tem))
-      return unbind_to (count, Qnil);
+      {
+       tem = CALLN (Frun_hook_with_args_until_failure,
+                    Qkill_buffer_query_functions);
+       if (NILP (tem))
+         return unbind_to (count, Qnil);
+      }
 
     /* Query if the buffer is still modified.  */
     if (INTERACTIVE && !NILP (BVAR (b, filename))