aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-26 00:07:17 +0000
committerRichard M. Stallman2001-11-26 00:07:17 +0000
commitf1597a3a85850d6a270c1a005089e9fa2f526a0a (patch)
tree7a3a6bb611425a1e26548b9407bb02d69ab7bb45 /src/buffer.c
parent7753968278818ef78cc2e97640f299f9585cf392 (diff)
downloademacs-f1597a3a85850d6a270c1a005089e9fa2f526a0a.tar.gz
emacs-f1597a3a85850d6a270c1a005089e9fa2f526a0a.zip
(Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5eace5b96e3..84fdd35a2de 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1292,8 +1292,7 @@ with SIGHUP. */)
1292 } 1292 }
1293 1293
1294 /* Then run the hooks. */ 1294 /* Then run the hooks. */
1295 if (!NILP (Vrun_hooks)) 1295 Frun_hooks (1, &Qkill_buffer_hook);
1296 call1 (Vrun_hooks, Qkill_buffer_hook);
1297 unbind_to (count, Qnil); 1296 unbind_to (count, Qnil);
1298 } 1297 }
1299 1298