summaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-02-22 14:23:26 +0000
committerJim Blandy <jimb@redhat.com>1993-02-22 14:23:26 +0000
commitef31762aef2c1e80bdd38e54cf098e77c0256d3b (patch)
tree34f084c66ae3f41b10f66b5a38b52999b9b62084 /src/bytecode.c
parente9bbdc3a5165109f529bd9646f5fd1bbb49046e7 (diff)
downloademacs-ef31762aef2c1e80bdd38e54cf098e77c0256d3b.tar.gz
* 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.")
case Btemp_output_buffer_show:
v1 = POP;
- temp_output_buffer_show (TOP, Qnil);
+ temp_output_buffer_show (TOP);
TOP = v1;
/* pop binding of standard-output */
unbind_to (specpdl_ptr - specpdl - 1, Qnil);