Mercurial > emacs
comparison src/print.c @ 30432:8f4528e244d5
(temp_output_buffer_setup): Don't call1 Vrun_hooks
if that is nil.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 24 Jul 2000 18:41:13 +0000 |
parents | 1a26ac604ea4 |
children | 6c5d35d06409 |
comparison
equal
deleted
inserted
replaced
30431:d73614b6c33b | 30432:8f4528e244d5 |
---|---|
581 current_buffer->enable_multibyte_characters | 581 current_buffer->enable_multibyte_characters |
582 = buffer_defaults.enable_multibyte_characters; | 582 = buffer_defaults.enable_multibyte_characters; |
583 Ferase_buffer (); | 583 Ferase_buffer (); |
584 XSETBUFFER (buf, current_buffer); | 584 XSETBUFFER (buf, current_buffer); |
585 | 585 |
586 call1 (Vrun_hooks, Qtemp_buffer_setup_hook); | 586 if (!NILP (Vrun_hooks)) |
587 call1 (Vrun_hooks, Qtemp_buffer_setup_hook); | |
587 | 588 |
588 unbind_to (count, Qnil); | 589 unbind_to (count, Qnil); |
589 | 590 |
590 specbind (Qstandard_output, buf); | 591 specbind (Qstandard_output, buf); |
591 } | 592 } |