comparison src/bytecode.c @ 1911:d9fc49956cd8

* bytecode.c (Fbyte_code): Pass the correct number of arguments to temp_output_buffer_show.
author Jim Blandy <jimb@redhat.com>
date Mon, 22 Feb 1993 14:23:26 +0000
parents 3ad82148830b
children e94a593c3952
comparison
equal deleted inserted replaced
1910:f2c914cdc071 1911:d9fc49956cd8
580 TOP = Vstandard_output; 580 TOP = Vstandard_output;
581 break; 581 break;
582 582
583 case Btemp_output_buffer_show: 583 case Btemp_output_buffer_show:
584 v1 = POP; 584 v1 = POP;
585 temp_output_buffer_show (TOP, Qnil); 585 temp_output_buffer_show (TOP);
586 TOP = v1; 586 TOP = v1;
587 /* pop binding of standard-output */ 587 /* pop binding of standard-output */
588 unbind_to (specpdl_ptr - specpdl - 1, Qnil); 588 unbind_to (specpdl_ptr - specpdl - 1, Qnil);
589 break; 589 break;
590 590