1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 20:30:32 -08:00

(temp_output_buffer_setup): Don't call1 Vrun_hooks

if that is nil.
This commit is contained in:
Gerd Moellmann 2000-07-24 18:41:13 +00:00
parent c66c29a2fc
commit fd76094657

View file

@ -583,7 +583,8 @@ temp_output_buffer_setup (bufname)
Ferase_buffer ();
XSETBUFFER (buf, current_buffer);
call1 (Vrun_hooks, Qtemp_buffer_setup_hook);
if (!NILP (Vrun_hooks))
call1 (Vrun_hooks, Qtemp_buffer_setup_hook);
unbind_to (count, Qnil);