aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 14:23:26 +0000
committerJim Blandy1993-02-22 14:23:26 +0000
commitf054132a4d5faba5d7a5199a28cdf25eeb0127e6 (patch)
tree4e5f7dfbaa204a49a2c279f45b078854f2dad683 /src/bytecode.c
parent9efa1bc61e8a437b42f51f7912bb11252e774b6f (diff)
downloademacs-f054132a4d5faba5d7a5199a28cdf25eeb0127e6.tar.gz
emacs-f054132a4d5faba5d7a5199a28cdf25eeb0127e6.zip
* bytecode.c (Fbyte_code): Pass the correct number of arguments to
temp_output_buffer_show.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index c06797337a1..904fd2e16ae 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -582,7 +582,7 @@ If the third argument is incorrect, Emacs may crash.")
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);