aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
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 62464986160..74b7d16affd 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -325,7 +325,7 @@ If the third argument is incorrect, Emacs may crash. */)
325 the original unibyte form. */ 325 the original unibyte form. */
326 bytestr = Fstring_as_unibyte (bytestr); 326 bytestr = Fstring_as_unibyte (bytestr);
327 } 327 }
328 Lisp_Object fun = CALLN (Fmake_byte_code, 0, bytestr, vector, maxdepth); 328 Lisp_Object fun = CALLN (Fmake_byte_code, Qnil, bytestr, vector, maxdepth);
329 return exec_byte_code (fun, 0, 0, NULL); 329 return exec_byte_code (fun, 0, 0, NULL);
330} 330}
331 331